diff options
Diffstat (limited to 'server.py')
-rwxr-xr-x | server.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -141,7 +141,7 @@ try: com=" ".join(command.split(' ')[1:]) # Parse the command if cmd in ["broadcast", "global", "msg", "say"]: - sendmsg(com) + sendmsg("NOTICE:" + com) if cmd in ["ban", "block", "nuke"]: security.ban_ip(com) if cmd in ["exit", "quit", "close", "term", "end"]: |