From 7598d211cd64d66872316c7d8739bf314facc1b0 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 30 Jun 2014 17:51:13 +0200 Subject: [PATCH] Correctly display permban URL. Fixes #228 --- buildnumber.properties | 4 ++-- src/me/StevenLawson/TotalFreedomMod/TFM_ServerInterface.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/buildnumber.properties b/buildnumber.properties index 204b46b0..e951951f 100644 --- a/buildnumber.properties +++ b/buildnumber.properties @@ -1,3 +1,3 @@ #Build Number for ANT. Do not edit! -#Mon Jun 30 17:35:21 CEST 2014 -build.number=911 +#Mon Jun 30 17:50:54 CEST 2014 +build.number=912 diff --git a/src/me/StevenLawson/TotalFreedomMod/TFM_ServerInterface.java b/src/me/StevenLawson/TotalFreedomMod/TFM_ServerInterface.java index f3f050d7..27a9b45d 100644 --- a/src/me/StevenLawson/TotalFreedomMod/TFM_ServerInterface.java +++ b/src/me/StevenLawson/TotalFreedomMod/TFM_ServerInterface.java @@ -150,7 +150,7 @@ public class TFM_ServerInterface { event.disallow(Result.KICK_OTHER, ChatColor.RED + "Your IP address is permanently banned from this server.\nRelease procedures are available at\n" - + ChatColor.GOLD + TFM_ConfigEntry.SERVER_PERMBAN_URL); + + ChatColor.GOLD + TFM_ConfigEntry.SERVER_PERMBAN_URL.getString()); return; } } @@ -162,7 +162,7 @@ public class TFM_ServerInterface { event.disallow(Result.KICK_OTHER, ChatColor.RED + "Your username is permanently banned from this server.\nRelease procedures are available at\n" - + ChatColor.GOLD + TFM_ConfigEntry.SERVER_PERMBAN_URL); + + ChatColor.GOLD + TFM_ConfigEntry.SERVER_PERMBAN_URL.getString()); return; } }