From 42f340c7987827552f4766597d9dd0f5cd038671 Mon Sep 17 00:00:00 2001 From: ChocoTaco1 Date: Wed, 24 Mar 2021 09:23:04 -0400 Subject: [PATCH] Typo --- Classic/scripts/autoexec/LockedTeams.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Classic/scripts/autoexec/LockedTeams.cs b/Classic/scripts/autoexec/LockedTeams.cs index f31816f..d8c28d8 100755 --- a/Classic/scripts/autoexec/LockedTeams.cs +++ b/Classic/scripts/autoexec/LockedTeams.cs @@ -46,7 +46,7 @@ function serverCmdClientJoinGame(%client) { if ($LockedTeams) { - messageClient( %client, '', "Teams are locked. Asked the admin to set your team." ); + messageClient( %client, '', "Teams are locked. Ask the admin to set your team." ); return; } Parent::serverCmdClientJoinGame(%client); @@ -59,7 +59,7 @@ function serverCmdClientPickedTeam(%client, %option) { if($Host::TournamentMode && %client.team !$= 0) //Added { - messageClient( %client, '', "Teams are locked. Asked the admin to set your team." ); + messageClient( %client, '', "Teams are locked. Ask the admin to set your team." ); serverCmdClientMakeObserver( %client ); } return; @@ -70,7 +70,7 @@ function serverCmdClientTeamChange(%client, %option) { if ($LockedTeams) { - messageClient( %client, '', "Teams are locked. Asked the admin to set your team." ); + messageClient( %client, '', "Teams are locked. Ask the admin to set your team." ); return; } Parent::serverCmdClientTeamChange(%client, %option);