Changes the E flag to a V flag for rewrite consistency

This commit is contained in:
2023-03-24 23:52:18 +01:00
parent 10a16000c6
commit 91d855312d
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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;