mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 03:02:54 +00:00
Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
11 lines
258 B
Plaintext
11 lines
258 B
Plaintext
/decl/emote/visible/vomit
|
|
key = "vomit"
|
|
|
|
/decl/emote/visible/vomit/do_emote(var/atom/user, var/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."))
|