From 25bbb020513ff2336a9d38ffd4cdc8e387ca583d Mon Sep 17 00:00:00 2001 From: ChocoTaco1 Date: Sat, 1 Aug 2020 20:51:59 -0400 Subject: [PATCH] Kick reason --- Classic/scripts/autoexec/TKwarn.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Classic/scripts/autoexec/TKwarn.cs b/Classic/scripts/autoexec/TKwarn.cs index 7cd4d6b..a5f745c 100644 --- a/Classic/scripts/autoexec/TKwarn.cs +++ b/Classic/scripts/autoexec/TKwarn.cs @@ -78,7 +78,7 @@ function TKkick( %client, %admin, %guid ) if ( isObject( %cl ) ) { - %client.setDisconnectReason( "You have been kicked out of the game." ); // z0dd - ZOD, 7/13/03. Tell who kicked + %client.setDisconnectReason( "You have been kicked out of the game for teamkilling." ); // z0dd - ZOD, 7/13/03. Tell who kicked %cl.schedule(700, "delete"); } // ban by IP as well @@ -96,7 +96,7 @@ function TKkick( %client, %admin, %guid ) if ( isObject( %client ) ) { - %client.setDisconnectReason( "You have been kicked out of the game." ); + %client.setDisconnectReason( "You have been kicked out of the game for teamkilling." ); %client.schedule(700, "delete"); } BanList::add( 0, %client.getAddress(), $Host::KickBanTime );