Merge pull request #14577 from PastelPrinceDan/extract-fix

fixes a small typo on the slime fertility agent
This commit is contained in:
Casey
2023-02-27 13:57:42 -05:00
committed by CHOMPStation2
parent 6fc4938efd
commit 582aaee6d9

View File

@@ -47,7 +47,7 @@
to_chat(user, "<span class='warning'>The slime cannot get any more fertile!</span>") to_chat(user, "<span class='warning'>The slime cannot get any more fertile!</span>")
return ..() return ..()
to_chat(user, "<span class='notice'>You feed the slime the infertility agent. It will now have less offspring.</span>") to_chat(user, "<span class='notice'>You feed the slime the fertility agent. It will now have more offspring.</span>")
M.split_amount = between(2, M.split_amount + 2, 6) M.split_amount = between(2, M.split_amount + 2, 6)
playsound(src, 'sound/effects/bubbles.ogg', 50, 1) playsound(src, 'sound/effects/bubbles.ogg', 50, 1)
qdel(src) qdel(src)
@@ -192,4 +192,4 @@
if(istype(AI) && justified) if(istype(AI) && justified)
AI.obedience = 10 AI.obedience = 10
playsound(src, 'sound/effects/bubbles.ogg', 50, 1) playsound(src, 'sound/effects/bubbles.ogg', 50, 1)
qdel(src) qdel(src)