Skip to content

Commit

Permalink
Server-side fix to /adminmsg not working right
Browse files Browse the repository at this point in the history
  • Loading branch information
ln-zookeeper committed Apr 11, 2016
1 parent 705a9cc commit 3f7b28f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/server.cpp
Expand Up @@ -1290,7 +1290,7 @@ void server::process_query(const network::connection sock,
// Commands a player may issue.
if (command == "status") {
response << process_command(command + " " + pl->second.name(), pl->second.name());
} else if (command.find("adminmsg") == 0
} else if (command.find("adminmsg") == 0 || command.find("report") == 0
|| command == "games"
|| command == "metrics"
|| command == "motd"
Expand Down

0 comments on commit 3f7b28f

Please sign in to comment.