From 2862850e9b8d1a7f3d864bb120b4627eda17c027 Mon Sep 17 00:00:00 2001 From: Samual Date: Sat, 7 Jan 2012 16:41:34 -0500 Subject: [PATCH] Make tell work with magicear like previously --- qcsrc/server/command/cmd.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/server/command/cmd.qc b/qcsrc/server/command/cmd.qc index 5a7eb03ff..e8a620731 100644 --- a/qcsrc/server/command/cmd.qc +++ b/qcsrc/server/command/cmd.qc @@ -510,7 +510,7 @@ void ClientCommand_tell(float request, float argc, string command) } else { print_to(self, "You can't ^2tell^7 a message to yourself."); return; } } - else if(strtolower(argv(1)) == "world") + else if(argv(1) == "#0") { trigger_magicear_processmessage_forallears(self, -1, world, substring(command, argv_start_index(next_token), argv_end_index(-1) - argv_start_index(next_token))); return; -- 2.39.2