Merge pull request #10153 from Linzolle/fireman-clarity

make unable to carry fireman message more clear when unable to carry non-humans
This commit is contained in:
Putnam3145
2019-12-17 12:09:08 -08:00
committed by GitHub

View File

@@ -892,7 +892,10 @@
return
visible_message("<span class='warning'>[src] fails to fireman carry [target]!")
else
to_chat(src, "<span class='notice'>You can't fireman carry [target] while they're standing!</span>")
if (ishuman(target))
to_chat(src, "<span class='notice'>You can't fireman carry [target] while they're standing!</span>")
else
to_chat(src, "<span class='notice'>You can't seem to fireman carry that kind of species.</span>")
/mob/living/carbon/human/proc/piggyback(mob/living/carbon/target)
if(can_piggyback(target))