readability
This commit is contained in:
@@ -37,7 +37,8 @@ def broadcast(perm, text):
|
|||||||
"""
|
"""
|
||||||
text = colorify(text)
|
text = colorify(text)
|
||||||
for recipient in list(server.getOnlinePlayers()) + [server.getConsoleSender()]:
|
for recipient in list(server.getOnlinePlayers()) + [server.getConsoleSender()]:
|
||||||
(not perm or recipient.hasPermission(perm)) and msg(recipient, text)
|
if not perm or recipient.hasPermission(perm):
|
||||||
|
msg(recipient, text)
|
||||||
|
|
||||||
|
|
||||||
def colorify(text):
|
def colorify(text):
|
||||||
|
|||||||
Reference in New Issue
Block a user