Browse Source

now you can't !ping in game

master
jcao219 13 years ago
parent
commit
6e3d95af8f
  1. 4
      wolfgame.py

4
wolfgame.py

@ -235,6 +235,10 @@ def pinger(cli, nick, chan, rest): @@ -235,6 +235,10 @@ def pinger(cli, nick, chan, rest):
cli.notice(nick, ("This command is ratelimited. " +
"Please wait a while before using it again."))
return
if var.PHASE in ('night','day'):
cli.notice(nick, "You cannot use this command while a game is running.")
return
var.LAST_PING = datetime.now()
var.PINGING = True

Loading…
Cancel
Save