Merge pull request #84 from patrickfreed/master

Fixed NPE in LWCFeatures
This commit is contained in:
Brett Flannigan 2012-01-26 17:47:24 -08:00
commit 370fd274d7

View File

@ -49,7 +49,7 @@ public class LWCFeatures
{ {
if(lwc.findProtection(chests.get(x)) != null) 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(); lwc.findProtection(chests.get(x)).remove();
} }
} }