From eb4f9700bca3380a7430b3db9950945acb17df72 Mon Sep 17 00:00:00 2001 From: Eric Stokes Date: Fri, 19 Aug 2011 16:48:55 -0600 Subject: [PATCH] Made World Access by default OP. However, opfallback is still set to true by default --- src/main/java/com/onarandombox/MultiverseCore/MVWorld.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/onarandombox/MultiverseCore/MVWorld.java b/src/main/java/com/onarandombox/MultiverseCore/MVWorld.java index 542c57c1..a88e76da 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/MVWorld.java +++ b/src/main/java/com/onarandombox/MultiverseCore/MVWorld.java @@ -144,7 +144,7 @@ public class MVWorld { this.canSave = true; saveConfig(); - this.permission = new Permission("multiverse.access." + this.getName(), "Allows access to " + this.getName(), PermissionDefault.TRUE); + this.permission = new Permission("multiverse.access." + this.getName(), "Allows access to " + this.getName(), PermissionDefault.OP); this.exempt = new Permission("multiverse.exempt." + this.getName(), "A player who has this does not pay to enter this world, or use any MV portals in it " + this.getName(), PermissionDefault.OP); try { this.plugin.getServer().getPluginManager().addPermission(this.permission);