From c16de832ef981e989ad96dd8d22f45ff8837aa24 Mon Sep 17 00:00:00 2001 From: Samual Lenks Date: Sat, 24 Aug 2013 16:12:54 -0400 Subject: [PATCH] Clean up checkargs a little bit --- qcsrc/common/notifications.qc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/qcsrc/common/notifications.qc b/qcsrc/common/notifications.qc index fc9137db9..70a7fc1e1 100644 --- a/qcsrc/common/notifications.qc +++ b/qcsrc/common/notifications.qc @@ -105,15 +105,18 @@ string Notification_CheckArgs( case NOTIF_TEAM: { - if not(teamplay) { checkargs = sprintf("%sTeamplay not active!", checkargs); } + if not(teamplay) + { checkargs = sprintf("%sTeamplay not active!", checkargs); } //else if not(client.team) { checkargs = sprintf("%sNo team provided!", checkargs); } break; } case NOTIF_TEAM_EXCEPT: { - if not(teamplay) { checkargs = sprintf("%sTeamplay not active!", checkargs); } - else if(IS_NOT_A_CLIENT(client)) { checkargs = sprintf("%sException can't be a non-client!", checkargs); } + if not(teamplay) + { checkargs = sprintf("%sTeamplay not active!", checkargs); } + else if(IS_NOT_A_CLIENT(client)) + { checkargs = sprintf("%sException can't be a non-client!", checkargs); } break; } -- 2.39.2