add old_api=True to sleepy commands, default it to true

This commit is contained in:
jacob1 2016-11-20 22:30:13 -05:00
parent ed2576ef7e
commit c90d35e6c0
2 changed files with 5 additions and 5 deletions

View File

@ -184,7 +184,7 @@ class handle_error:
class cmd:
def __init__(self, *cmds, raw_nick=False, flag=None, owner_only=False,
chan=True, pm=False, playing=False, silenced=False,
phases=(), roles=(), nicks=None, old_api=False):
phases=(), roles=(), nicks=None, old_api=True):
self.cmds = cmds
self.raw_nick = raw_nick

View File

@ -863,10 +863,10 @@ class SleepyMode(GameMode):
events.add_listener("transition_day_begin", self.nightmare_kill)
events.add_listener("del_player", self.happy_fun_times)
events.add_listener("rename_player", self.rename_player)
self.north_cmd = decorators.cmd("north", "n", chan=False, pm=True, playing=True, phases=("night",))(self.north)
self.east_cmd = decorators.cmd("east", "e", chan=False, pm=True, playing=True, phases=("night",))(self.east)
self.south_cmd = decorators.cmd("south", "s", chan=False, pm=True, playing=True, phases=("night",))(self.south)
self.west_cmd = decorators.cmd("west", "w", chan=False, pm=True, playing=True, phases=("night",))(self.west)
self.north_cmd = decorators.cmd("north", "n", chan=False, pm=True, playing=True, old_api=True, phases=("night",))(self.north)
self.east_cmd = decorators.cmd("east", "e", chan=False, pm=True, playing=True, old_api=True, phases=("night",))(self.east)
self.south_cmd = decorators.cmd("south", "s", chan=False, pm=True, playing=True, old_api=True, phases=("night",))(self.south)
self.west_cmd = decorators.cmd("west", "w", chan=False, pm=True, playing=True, old_api=True, phases=("night",))(self.west)
def teardown(self):
from src import decorators