mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-30 16:38:22 +01:00
Changelings can't do emotes while faking being dead. (#9403)
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
|
||||
/mob/proc/emote(var/act, var/m_type, var/message)
|
||||
// s-s-snowflake
|
||||
if(src.stat == DEAD && act != "deathgasp")
|
||||
if((src.stat == DEAD || src.status_flags & FAKEDEATH) && act != "deathgasp")
|
||||
return
|
||||
if(usr == src) //client-called emote
|
||||
if (client && (client.prefs.muted & MUTE_IC))
|
||||
|
||||
Reference in New Issue
Block a user