Punch Small Animals (#10381)

This commit is contained in:
Geeves
2020-10-30 19:20:51 +02:00
committed by GitHub
parent 38514fe2b3
commit b2d605a152
2 changed files with 11 additions and 1 deletions

View File

@@ -710,7 +710,11 @@ default behaviour is:
spawn() C.mob_breakout(src)
/mob/living/proc/escape_inventory(obj/item/holder/H)
if(H != src.loc) return
if(H != src.loc)
return
if(health < maxHealth * 0.6)
to_chat(src, SPAN_WARNING("You're too injured to escape..."))
return
var/mob/M = H.loc //Get our mob holder (if any).

View File

@@ -0,0 +1,6 @@
author: Geeves
delete-after: True
changes:
- tweak: "Small animals and nymphs can no longer wriggle out of bags or your hand when below 60% HP."