Fix compile failure with PR #861 (#866)

Missing ")" in the line 607. 
This happens when you edit it directly in github browser 🤣
This commit is contained in:
wellnesscookie 2019-07-27 14:53:02 +02:00 committed by Florian CUNY
parent 962833ad60
commit 8ec38ce07d

View File

@ -603,7 +603,7 @@ public class Island implements DataObject {
@NonNull
public List<Player> getPlayersOnIsland() {
return Bukkit.getOnlinePlayers().stream()
.filter(player -> onIsland(player.getLocation())
.filter(player -> onIsland(player.getLocation()))
.collect(Collectors.toList());
}