-
-
Notifications
You must be signed in to change notification settings - Fork 54
Common Questions
BillyGalbreath edited this page Feb 27, 2021
·
20 revisions
Here are a list of common questions we've been asked, and the answers we give.
The config.yml is setup with per-world settings, just like spigot/paper/purpur's configs are. In the world-settings you will add in any world specific settings you'd like to override from default.
For example, to disable the nether and end worlds you can do this:
world-settings:
default:
map:
enabled: true
world_nether:
map:
enabled: false
world_the_end:
map:
enabled: falseThis will enable all worlds by default, then explicitly disable the nether and end worlds. This is for if you have many worlds and want most of them enabled.
Another option would be:
world-settings:
default:
map:
enabled: false
world:
map:
enabled: trueThis simply disables all worlds by default, then explicitly enables only the main world. Sometimes this is the easier choice if you have many worlds but only want a few enabled.
Same thing as