Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public Object serialize(Material material, Class<Material> aClass) {

final ConfigNode<Boolean> enforcePortalAccess = node(ConfigNode.builder("portal-usage.enforce-portal-access", Boolean.class)
.comment("If enabled, players will not be able to teleport to mvportals they do not have access to.")
.comment("The permission node is: `multiverse.portal.access.PORTALNAME`")
.comment("The permission node is: `multiverse.portal.access.<portal-name>`")
.defaultValue(true)
.name("enforce-portal-access")
.aliases("enforceportalaccess")
Expand All @@ -123,7 +123,7 @@ public Object serialize(Material material, Class<Material> aClass) {

final ConfigNode<Integer> portalCooldown = node(ConfigNode.builder("portal-usage.portal-cooldown", Integer.class)
.comment("")
.comment("The number of seconds a player must wait between using a mvportal.")
.comment("The time (in milliseconds) a player must wait between using a mvportal.")
.defaultValue(1000)
.name("portal-cooldown")
.aliases("portalcooldown")
Expand Down Expand Up @@ -161,6 +161,7 @@ public Object serialize(Material material, Class<Material> aClass) {
.comment("")
.comment("If enabled, player movement will be tracked to determine if the player has entered a portal.")
.comment("Disabling this will cause mvportals without nether or end fill to not work.")
.comment("Only disable this if all your portals have nether or end fill and want to slight enhance performance.")
.defaultValue(true)
.name("use-on-move")
.aliases("useonmove")
Expand Down
Loading