Improved the server "say" command to not require quotations for multi-world messages.

This commit is contained in:
Marcus Whybrow 2012-05-30 17:02:43 +01:00
parent ef410be0c5
commit cb9638bd22

2
msm
View File

@ -1647,7 +1647,7 @@ main() {
echo "Invalid command."
else
if server_is_running $id; then
server_eval $id "say $3"
server_eval $id "say ${*:3}"
echo "Message sent to players."
else
echo "Server \"${server_name[$id]}\" is not running."