mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-23 03:57:48 +01:00
11 lines
262 B
Plaintext
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."))
|