Add !mp start force, start game even for non-ready players, check if everyone is ready in !mp start

This commit is contained in:
Giuseppe Guerra
2017-08-11 00:57:58 +02:00
parent 466004f239
commit 612e808702
2 changed files with 11 additions and 2 deletions

View File

@@ -739,7 +739,7 @@ class match:
# Set playing to ready players and set load, skip and complete to False
# Make clients join playing stream
for i in range(0, 16):
if (self.slots[i].status & slotStatuses.READY) > 0 and self.slots[i].user in glob.tokens.tokens:
if self.slots[i].user in glob.tokens.tokens:
self.slots[i].status = slotStatuses.PLAYING
self.slots[i].loaded = False
self.slots[i].skip = False