From 0fb3b7edbfdc712710347aba05ce51316660a891 Mon Sep 17 00:00:00 2001 From: Cerapter Date: Mon, 27 Aug 2018 16:04:53 +0200 Subject: Jukebox fixes: clear on toggle, don't show 'has played' with one person. --- server/commands.py | 1 + 1 file changed, 1 insertion(+) (limited to 'server/commands.py') diff --git a/server/commands.py b/server/commands.py index 7c212baf..bf1cc7e3 100644 --- a/server/commands.py +++ b/server/commands.py @@ -174,6 +174,7 @@ def ooc_cmd_jukebox_toggle(client, arg): if len(arg) != 0: raise ArgumentError('This command has no arguments.') client.area.jukebox = not client.area.jukebox + client.area.jukebox_votes = [] changer = 'Unknown' if client.is_cm: changer = 'The CM' -- cgit