From f42d5f79ea7dd8882528673dfc0f9b57458aefae Mon Sep 17 00:00:00 2001 From: Aurorablade Date: Sat, 4 Nov 2017 22:18:30 -0400 Subject: [PATCH] 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) /*