From 7b53c18dd48e6d47fba17fcee2ac85f98416b312 Mon Sep 17 00:00:00 2001 From: ASangarin Date: Fri, 4 Dec 2020 21:12:14 +0100 Subject: [PATCH] push build --- .../net/Indyuce/mmocore/api/quest/objective/GoToObjective.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/net/Indyuce/mmocore/api/quest/objective/GoToObjective.java b/src/main/java/net/Indyuce/mmocore/api/quest/objective/GoToObjective.java index da7f77ca..c7d0c5db 100644 --- a/src/main/java/net/Indyuce/mmocore/api/quest/objective/GoToObjective.java +++ b/src/main/java/net/Indyuce/mmocore/api/quest/objective/GoToObjective.java @@ -24,7 +24,6 @@ public class GoToObjective extends Objective { config.validate("range", "world", "x", "y", "z"); range = config.getDouble("range"); - World world = Bukkit.getWorld(config.getString("world")); Validate.notNull(world, "Could not find world " + config.getString("world")); loc = new Location(world, config.getInt("x"), config.getInt("y"), config.getInt("z"));