mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-15 12:43:13 +00:00
11 lines
259 B
Plaintext
11 lines
259 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."))
|