don't run the reaper in debug mode (fixes errors with fake nicks)

This commit is contained in:
jacob1 2014-11-26 23:43:34 -05:00
parent 8ca611a43e
commit addc7c9e96

View File

@ -5074,10 +5074,11 @@ def start(cli, nick, chann_, rest):
if var.STASISED[cloak] <= 0: if var.STASISED[cloak] <= 0:
del var.STASISED[cloak] del var.STASISED[cloak]
# DEATH TO IDLERS! if not botconfig.DEBUG_MODE:
reapertimer = threading.Thread(None, reaper, args=(cli,var.GAME_ID)) # DEATH TO IDLERS!
reapertimer.daemon = True reapertimer = threading.Thread(None, reaper, args=(cli,var.GAME_ID))
reapertimer.start() reapertimer.daemon = True
reapertimer.start()