Skip to content

Commit

Permalink
err
Browse files Browse the repository at this point in the history
  • Loading branch information
ihatethisengine committed Jul 28, 2023
1 parent 311a9e4 commit b08470e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/reagents/chemistry_properties/prop_neutral.dm
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
var/mob/living/carbon/xenomorph/xeno = target_mob
if(xeno.health < xeno.maxHealth || xeno.plasma_stored < xeno.plasma_max)
xeno.gain_health(holder.nutriment_factor * level * 4)
xeno.plasma_stored = min(xeno.plasma_stored + holder.nutriment_factor * level * 4, xeno.plasma_max)
xeno.gain_plasma(holder.nutriment_factor * level * 4)
xeno.flick_heal_overlay(1 SECONDS, "#666d09")
xeno.reagents.remove_reagent("nutriment", volume, TRUE) //xenos don't process chems so we don't want it to max at 100u
holder.on_delete()
Expand Down

0 comments on commit b08470e

Please sign in to comment.