diff --git a/src/main/java/com/volmit/iris/core/commands/CommandStudio.java b/src/main/java/com/volmit/iris/core/commands/CommandStudio.java index 9a49602e7..ca0170beb 100644 --- a/src/main/java/com/volmit/iris/core/commands/CommandStudio.java +++ b/src/main/java/com/volmit/iris/core/commands/CommandStudio.java @@ -665,10 +665,7 @@ public class CommandStudio implements DecreeExecutor { sender().sendMessage(C.RED + "Players only (this is a config error. Ask support to add DecreeOrigin.PLAYER to the command you tried to run)"); return; } - if (IrisToolbelt.isIrisWorld(world())) { - sender().sendMessage(C.RED + "You can only spawn entities in Iris worlds!"); - return; - } + sender().sendMessage(C.GREEN + "Spawning entity"); entity.spawn(engine(), new Location(world(), location.getX(), location.getY(), location.getZ())); }