Skip to content

Commit

Permalink
4 to 2
Browse files Browse the repository at this point in the history
  • Loading branch information
RikuLeinonenVuoksi committed Jun 7, 2024
1 parent 4b04e96 commit 521145f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/research/xenobiology/xenobiology.dm
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@

/obj/item/slimepotion/slime/steroid/attack(mob/living/basic/slime/M, mob/user)
if(!isslime(M))//If target is not a slime.
to_chat(user, span_warning("The steroid only works on baby slimes!"))
to_chat(user, span_warning("The steroid only works on slimes!")) // monkestation edit: not baby slimes only, no
return ..()
if(M.stat)
to_chat(user, span_warning("The slime is dead!"))
Expand All @@ -800,7 +800,7 @@
to_chat(user, span_warning("The slime is already producing too much ooze!"))
return
to_chat(user, span_notice("You feed the slime the steroid. It will now produce more ooze."))
M.ooze_production = min(M.ooze_production + 10, 50)
M.ooze_production = min(M.ooze_production + 20, 50)
// monkestation end
qdel(src)

Expand Down

0 comments on commit 521145f

Please sign in to comment.