mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-11-30 22:53:39 +01:00
Fixed bug where if statement had a ; in it
This commit is contained in:
parent
5314f3618a
commit
98b49ea37a
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user