From b2bf8c56b93e65fe1834b5a1ed5060df61e25970 Mon Sep 17 00:00:00 2001 From: Samual Date: Mon, 26 Dec 2011 23:56:39 -0500 Subject: [PATCH] Whoops, forgot to add those brackets back --- qcsrc/server/command/vote.qc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/qcsrc/server/command/vote.qc b/qcsrc/server/command/vote.qc index 675aa5fc7..9dbf1b067 100644 --- a/qcsrc/server/command/vote.qc +++ b/qcsrc/server/command/vote.qc @@ -600,7 +600,7 @@ void VoteCommand_abstain(float request, entity caller) // CLIENT ONLY default: case CMD_REQUEST_USAGE: { - print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " vote abstain"); + print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " vote abstain")); print_to(caller, " No arguments required."); return; } @@ -781,7 +781,7 @@ void VoteCommand_no(float request, entity caller) // CLIENT ONLY default: case CMD_REQUEST_USAGE: { - print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " vote no"); + print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " vote no")); print_to(caller, " No arguments required."); return; } @@ -805,7 +805,7 @@ void VoteCommand_status(float request, entity caller) // BOTH default: case CMD_REQUEST_USAGE: { - print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " vote status"); + print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " vote status")); print_to(caller, " No arguments required."); return; } @@ -828,7 +828,7 @@ void VoteCommand_stop(float request, entity caller) // BOTH default: case CMD_REQUEST_USAGE: { - print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " vote stop"); + print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " vote stop")); print_to(caller, " No arguments required."); return; } @@ -858,7 +858,7 @@ void VoteCommand_yes(float request, entity caller) // CLIENT ONLY default: case CMD_REQUEST_USAGE: { - print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " vote yes"); + print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " vote yes")); print_to(caller, " No arguments required."); return; } -- 2.39.2