Added release link to permban kick message

This commit is contained in:
JeromSar 2013-08-09 17:57:45 +02:00
parent 9b62731e94
commit bcd9658b3d
3 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
#Fri, 09 Aug 2013 15:38:23 +0200
#Fri, 09 Aug 2013 17:54:26 +0200
program.VERSION=2.22
program.BUILDNUM=378
program.BUILDDATE=08/09/2013 03\:38 PM
program.BUILDNUM=380
program.BUILDDATE=08/09/2013 05\:54 PM

View File

@ -1,3 +1,3 @@
#Build Number for ANT. Do not edit!
#Fri Aug 09 15:38:23 CEST 2013
build.number=379
#Fri Aug 09 17:54:26 CEST 2013
build.number=381

View File

@ -227,7 +227,7 @@ public class TFM_ServerInterface
{
if (test_player.equalsIgnoreCase(player_name))
{
event.disallow(PlayerLoginEvent.Result.KICK_BANNED, ChatColor.RED + "Your username is permanently banned from this server.");
event.disallow(PlayerLoginEvent.Result.KICK_BANNED, ChatColor.RED + "Your username is permanently banned from this server.\nRelease procedures are available at http://bit.ly/PermBan");
return;
}
}
@ -236,7 +236,7 @@ public class TFM_ServerInterface
{
if (TFM_Util.fuzzyIpMatch(test_ip, player_ip, 4))
{
event.disallow(PlayerLoginEvent.Result.KICK_BANNED, ChatColor.RED + "Your IP address is permanently banned from this server.");
event.disallow(PlayerLoginEvent.Result.KICK_BANNED, ChatColor.RED + "Your IP address is permanently banned from this server.\nRelease procedures are available at http://bit.ly/PermBan");
return;
}
}