mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-17 20:30:46 +01:00
f8333a8d93
* move those to static paths * maps * . * . * ugh * .
11 lines
270 B
Plaintext
11 lines
270 B
Plaintext
/datum/decl/emote/visible/vomit
|
|
key = "vomit"
|
|
|
|
/datum/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."))
|