Fixed bug where if statement had a ; in it

This commit is contained in:
Tastybento 2018-02-08 20:06:00 -08:00
parent 5314f3618a
commit 98b49ea37a

View File

@ -374,9 +374,10 @@ public class IslandCache {
}
if (o instanceof Island) {
Island is = (Island)o;
if (is.getOwner() != null && islandsByUUID.containsKey(is.getOwner()));
if (is.getOwner() != null && islandsByUUID.containsKey(is.getOwner())) {
return true;
}
}
return false;
}
}