From 7b7289db4c8c776c924722e379911defdefdcdd2 Mon Sep 17 00:00:00 2001 From: ementalo Date: Fri, 22 Jul 2011 14:07:04 +0100 Subject: [PATCH] Test #725 fix for Protection signs created before 2.5 --- .../src/com/earth2me/essentials/signs/SignProtection.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/signs/SignProtection.java b/Essentials/src/com/earth2me/essentials/signs/SignProtection.java index 4922b3dbb..f988dcb0b 100644 --- a/Essentials/src/com/earth2me/essentials/signs/SignProtection.java +++ b/Essentials/src/com/earth2me/essentials/signs/SignProtection.java @@ -9,6 +9,7 @@ import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import java.util.Set; +import org.bukkit.ChatColor; import org.bukkit.Location; import org.bukkit.Material; import org.bukkit.block.Block; @@ -152,12 +153,13 @@ public class SignProtection extends EssentialsSign { return SignProtectionState.ALLOWED; } - else if (line.equalsIgnoreCase(username)) + else if (line.equalsIgnoreCase(username)|| line.equalsIgnoreCase(ChatColor.stripColor(username))) { return SignProtectionState.ALLOWED; } } - if (sign.getLine(3).substring(2).equalsIgnoreCase(username)) + String signOwner = sign.getLine(3).substring(2); + if (signOwner.equalsIgnoreCase(username) || signOwner.equalsIgnoreCase(ChatColor.stripColor(username))) { return SignProtectionState.OWNER; }