I don't know about coffee, but how about Java? @sauilitired

This commit is contained in:
Jesse Boyd 2019-04-06 23:14:39 +11:00
parent b32b8a98e2
commit 3651b3ac8d
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F

View File

@ -49,12 +49,11 @@ public class EntitySpawnListener implements Listener {
public static void testCreate(Entity entity) { public static void testCreate(Entity entity) {
@NotNull World world = entity.getWorld(); @NotNull World world = entity.getWorld();
if (areaName == world.getName()) { if (areaName == world.getName()) {
if (!hasPlotArea) return;
} else { } else {
areaName = world.getName(); areaName = world.getName();
hasPlotArea = PlotSquared.get().hasPlotArea(areaName); hasPlotArea = PlotSquared.get().hasPlotArea(areaName);
if (!hasPlotArea) return;
} }
if (!hasPlotArea) return;
test(entity); test(entity);
} }