Remove unused format params

This commit is contained in:
skizzerz 2015-11-01 14:23:29 -06:00
parent 950c11e0a0
commit 4e65ad6e19

View File

@ -1044,7 +1044,7 @@ class SleepyMode(GameMode):
harlots = [p for p in var.ROLES["harlot"] if p in pl and random.random() < turn_chance] 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] 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 " + 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: for seer in seers:
var.ROLES["seer"].remove(seer) var.ROLES["seer"].remove(seer)
var.ROLES["doomsayer"].add(seer) var.ROLES["doomsayer"].add(seer)