Skip to content

Commit

Permalink
adds a 1.5 multiplier to the potency subtracted from the embryo timer
Browse files Browse the repository at this point in the history
  • Loading branch information
wshuwshuwshi committed Jun 8, 2024
1 parent a361faf commit be4df7f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@
var/obj/item/alien_embryo/embryo = content
if(embryo && istype(embryo))
if(embryo.counter > 0)
embryo.counter = embryo.counter - potency
embryo.counter = embryo.counter - potency*1.5
current_human.take_limb_damage(0,POTENCY_MULTIPLIER_MEDIUM*potency)
else
embryo.stage--
Expand Down

0 comments on commit be4df7f

Please sign in to comment.