Fix null position async errors
continuous-integration/drone/push Build is passing Details

main
Bea 5 months ago
parent 8d4284138f
commit fcbd6c5d01

@ -39,6 +39,9 @@ public class LocationCheckRunnable implements Runnable
if(player != null) playersToCheck.remove(player);
}
if(!Cache.playerIslands.containsKey(player.getName()))
return; //it means the player just joined and still didn't get an island (reminder that this is async)
Location playerLocation = player.getLocation();
Coordinates playerIslandCoordinates = Cache.playerIslands.get(player.getName());

Loading…
Cancel
Save