mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-17 18:14:25 +01:00
5926589c16
* removes var/ inside all procs * . * ugh
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."))
|