From 4e65ad6e19841f78e94470304c0856d80ed61c43 Mon Sep 17 00:00:00 2001 From: skizzerz Date: Sun, 1 Nov 2015 14:23:29 -0600 Subject: [PATCH] Remove unused format params --- src/gamemodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gamemodes.py b/src/gamemodes.py index ba7743e..6f1dca0 100644 --- a/src/gamemodes.py +++ b/src/gamemodes.py @@ -1044,7 +1044,7 @@ class SleepyMode(GameMode): harlots = [p for p in var.ROLES["harlot"] if p in pl and random.random() < turn_chance] cultists = [p for p in var.ROLES["cultist"] if p in pl and random.random() < turn_chance] cli.msg(botconfig.CHANNEL, ("The sky suddenly darkens as a thunderstorm appears from nowhere. The bell on the newly-abandoned church starts ringing " + - "in sinister tones before the building is struck repeatedly by lightning, setting it alight in a raging inferno...").format(total, var.plural("toll", total))) + "in sinister tones before the building is struck repeatedly by lightning, setting it alight in a raging inferno...")) for seer in seers: var.ROLES["seer"].remove(seer) var.ROLES["doomsayer"].add(seer)