Trigger !faftergame if the game was canceled because of timeout

This commit is contained in:
nyuszika7h 2015-05-24 23:07:23 +02:00
parent 90321582de
commit 8d9729cc15

View File

@ -1377,6 +1377,8 @@ def kill_join(cli, chan):
cli.msg(chan, 'The current game took too long to start and ' + cli.msg(chan, 'The current game took too long to start and ' +
'has been canceled. If you are still active, ' + 'has been canceled. If you are still active, ' +
'please join again to start a new game.') 'please join again to start a new game.')
if callable(var.AFTER_FLASTGAME):
var.AFTER_FLASTGAME()
@cmd("fjoin", admin_only=True, none=True, join=True) @cmd("fjoin", admin_only=True, none=True, join=True)