diff --git a/README.md b/README.md index 5d4f412..b99aa73 100644 --- a/README.md +++ b/README.md @@ -142,7 +142,7 @@ section). See the Custom Gate Layout section to learn how to add custom gates. player enters. (Implicitly always on) - 'U' is for a gate connecting to another through bungee (Implicitly always on) - 'I' is for a silent gate, which does not output anything to the chat while teleporting. Increases immersion - - 'E' is for a gate without a sign. Only for fixed stargates + - 'V' is for invisible gates, i.e. a gate without a sign. Only for fixed stargates The options are the single letter, not the word. So to make a private hidden gate, your 4th line would be 'PH'. The &\[0-9a-f] color codes are not counted in the character limit, thus allowing a 13-character name with an additional 2 diff --git a/src/main/java/net/knarcraft/stargate/portal/property/PortalOption.java b/src/main/java/net/knarcraft/stargate/portal/property/PortalOption.java index 9b4cce3..ffc02b6 100644 --- a/src/main/java/net/knarcraft/stargate/portal/property/PortalOption.java +++ b/src/main/java/net/knarcraft/stargate/portal/property/PortalOption.java @@ -58,7 +58,7 @@ public enum PortalOption { /** * This option causes a fixed portal's sign to be removed after creation */ - NO_SIGN('e', "stargate.option.nosign", 22); + NO_SIGN('v', "stargate.option.nosign", 22); private final char characterRepresentation; private final String permissionString;