Remove the obsolete parse_nick call under game()

This commit is contained in:
Vgr E.Barry 2015-03-15 13:29:23 -04:00
parent b21d0608d9
commit 77569e3b24

View File

@ -6979,10 +6979,8 @@ def my_stats(cli, nick, chan, rest):
rest = rest.split()
player_stats(cli, nick, chan, " ".join([nick] + rest))
@cmd("game", raw_nick=True, join=True, playing=True)
@cmd("game", join=True, playing=True)
def game(cli, nick, chan, rest):
nick, _, __, cloak = parse_nick(nick)
if rest:
gamemode = rest.lower().split()[0]
else: