don't run the reaper in debug mode (fixes errors with fake nicks)
This commit is contained in:
parent
8ca611a43e
commit
addc7c9e96
@ -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()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user