mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-21 12:46:46 +01:00
fix: add null check for bukkit world ref
This commit is contained in:
parent
161e3ffdc7
commit
18007c2367
@ -75,7 +75,7 @@ public class BukkitWorld implements World<org.bukkit.World> {
|
||||
public static @NonNull BukkitWorld of(final org.bukkit.World world) {
|
||||
WeakReference<BukkitWorld> bukkitWorldRef = worldMap.get(world.getName());
|
||||
BukkitWorld bukkitWorld;
|
||||
if ((bukkitWorld = bukkitWorldRef.get()) != null && world.equals(bukkitWorld.world.get())) {
|
||||
if (bukkitWorldRef != null && (bukkitWorld = bukkitWorldRef.get()) != null && world.equals(bukkitWorld.world.get())) {
|
||||
return bukkitWorld;
|
||||
}
|
||||
bukkitWorld = new BukkitWorld(world);
|
||||
|
Loading…
Reference in New Issue
Block a user