(patrickfreed) Fixed NPE in LWCFeatures

Fixed problem described here: http://forums.bukkit.org/threads/sec-fun-factions-1-6-3-guilds-war-and-user-controlled-antigrief-1-1-r1.19063/page-83#post-928744
This commit is contained in:
Brettflan 2012-01-26 22:19:12 -06:00
parent da1fb45ea0
commit 5c986109f8
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ public class LWCFeatures
{
if(lwc.findProtection(chests.get(x)) != null)
{
if(!faction.getFPlayers().contains(FPlayers.i.get(lwc.findProtection(chests.get(x)).getBukkitOwner())))
if(!faction.getFPlayers().contains(FPlayers.i.get(lwc.findProtection(chests.get(x)).getOwner())))
lwc.findProtection(chests.get(x)).remove();
}
}