added args to response

This commit is contained in:
Jeena Paradies 2011-05-04 13:01:22 +02:00
parent 3b429d7dd4
commit 792e57bde9

View file

@ -4,7 +4,7 @@ function playerCommand(player_id, command, args) {
} else if(command == "message") {
message(player_id, args);
} else if(command == "ping") {
GGS.sendCommand(player_id, "pong", "");
GGS.sendCommand(player_id, "pong", args);
}
}