From 9ed873d47ea53b99dc5ab99669fe9cd7f6bca15d Mon Sep 17 00:00:00 2001 From: Aurorablade Date: Fri, 29 Sep 2017 23:51:34 -0400 Subject: [PATCH 1/2] The cult s mimes --- code/game/gamemodes/cult/runes.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/game/gamemodes/cult/runes.dm b/code/game/gamemodes/cult/runes.dm index 892a5e7a204..d5b05885c6e 100644 --- a/code/game/gamemodes/cult/runes.dm +++ b/code/game/gamemodes/cult/runes.dm @@ -149,7 +149,10 @@ structure_check() searches for nearby cultist structures required for the invoca if(invocation) for(var/M in invokers) var/mob/living/L = M - L.say(invocation) + if(!L.IsVocal()) + L.emote("gestures ominously.") + else + L.say(invocation) L.changeNext_move(CLICK_CD_MELEE)//THIS IS WHY WE CAN'T HAVE NICE THINGS do_invoke_glow() From f42d5f79ea7dd8882528673dfc0f9b57458aefae Mon Sep 17 00:00:00 2001 From: Aurorablade Date: Sat, 4 Nov 2017 22:18:30 -0400 Subject: [PATCH 2/2] how long was that slash there? --- code/datums/spell.dm | 9 ++++++--- code/game/gamemodes/cult/runes.dm | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/code/datums/spell.dm b/code/datums/spell.dm index 6dba2d9990b..09be076d80d 100644 --- a/code/datums/spell.dm +++ b/code/datums/spell.dm @@ -171,10 +171,13 @@ var/list/spells = typesof(/obj/effect/proc_holder/spell) //needed for the badmin /obj/effect/proc_holder/spell/proc/invocation(mob/user = usr) //spelling the spell out and setting it on recharge/reducing charges amount switch(invocation_type) if("shout") - if(prob(50))//Auto-mute? Fuck that noise - user.say(invocation) + if(!user.IsVocal()) + user.emote("makes frantic gestures!") else - user.say(replacetext(invocation," ","`")) + if(prob(50))//Auto-mute? Fuck that noise + user.say(invocation) + else + user.say(replacetext(invocation," ","`")) if("whisper") if(prob(50)) user.whisper(invocation) diff --git a/code/game/gamemodes/cult/runes.dm b/code/game/gamemodes/cult/runes.dm index d5b05885c6e..22a449c7ba3 100644 --- a/code/game/gamemodes/cult/runes.dm +++ b/code/game/gamemodes/cult/runes.dm @@ -1,4 +1,4 @@ -/var/list/sacrificed = list() +var/list/sacrificed = list() var/list/non_revealed_runes = (subtypesof(/obj/effect/rune) - /obj/effect/rune/malformed) /*