mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-20 15:12:57 +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."))
|