1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

Fixato un exploit

This commit is contained in:
Steffo 2016-04-19 18:51:10 +02:00
parent 8569a6fa3f
commit 420a6a790b

View file

@ -343,7 +343,10 @@ while True:
g.message("\u26A0\uFE0F Non puoi unirti alla partita.\n"
"La fase di unione è terminata o ti sei già unito in precedenza.")
elif t['text'].startswith("/status"):
g.message(g.status() + "\n" + g.displaycount())
if not g.joinphase:
g.message(g.status() + "\n" + g.displaycount())
else:
g.message(g.status())
p = g.findid(t['from']['id'])
if p.role == 1:
p.message(g.mifiastatus())