mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
Fixes emote runtimes (#39115)
Fixed some missing args in emote procs called with named args, leading to runtimes.
This commit is contained in:
committed by
Ling
parent
d4787f9df8
commit
18dddfbaae
@@ -142,7 +142,7 @@
|
|||||||
to_chat(src, "<span class='warning'>You cannot speak, your other self is controlling your body!</span>")
|
to_chat(src, "<span class='warning'>You cannot speak, your other self is controlling your body!</span>")
|
||||||
return FALSE
|
return FALSE
|
||||||
|
|
||||||
/mob/living/split_personality/emote(message)
|
/mob/living/split_personality/emote(act, m_type = null, message = null, intentional = FALSE)
|
||||||
return
|
return
|
||||||
|
|
||||||
///////////////BRAINWASHING////////////////////
|
///////////////BRAINWASHING////////////////////
|
||||||
|
|||||||
@@ -28,5 +28,5 @@
|
|||||||
/mob/camera/forceMove(atom/destination)
|
/mob/camera/forceMove(atom/destination)
|
||||||
loc = destination
|
loc = destination
|
||||||
|
|
||||||
/mob/camera/emote(act, m_type=1, message = null)
|
/mob/camera/emote(act, m_type=1, message = null, intentional = FALSE)
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -268,7 +268,7 @@
|
|||||||
verb_say = pick(speak_emote)
|
verb_say = pick(speak_emote)
|
||||||
. = ..()
|
. = ..()
|
||||||
|
|
||||||
/mob/living/simple_animal/emote(act, m_type=1, message = null)
|
/mob/living/simple_animal/emote(act, m_type=1, message = null, intentional = FALSE)
|
||||||
if(stat)
|
if(stat)
|
||||||
return
|
return
|
||||||
if(act == "scream")
|
if(act == "scream")
|
||||||
|
|||||||
Reference in New Issue
Block a user