Files
Kashargul 5926589c16 removes var/ inside all procs (#19450)
* removes var/ inside all procs

* .

* ugh
2026-05-05 10:55:17 +02:00

11 lines
262 B
Plaintext

/datum/decl/emote/visible/vomit
key = "vomit"
/datum/decl/emote/visible/vomit/do_emote(atom/user, extra_params)
if(isliving(user))
var/mob/living/M = user
if(!M.isSynthetic())
M.vomit()
return
to_chat(src, span_warning("You are unable to vomit."))