mirror of
https://github.com/BentoBoxWorld/BSkyBlock.git
synced 2024-12-29 17:37:36 +01:00
Better config.yml comments on home setting in nether and end
Fixes https://github.com/BentoBoxWorld/BSkyBlock/issues/356
This commit is contained in:
parent
b354793f03
commit
97c29e31e6
@ -420,12 +420,14 @@ public class Settings implements WorldSettings {
|
|||||||
private List<String> onLeaveCommands = new ArrayList<>();
|
private List<String> onLeaveCommands = new ArrayList<>();
|
||||||
|
|
||||||
// Sethome
|
// Sethome
|
||||||
|
@ConfigComment("Allow setting home in the nether. Only available on nether islands, not vanilla nether.")
|
||||||
@ConfigEntry(path = "island.sethome.nether.allow")
|
@ConfigEntry(path = "island.sethome.nether.allow")
|
||||||
private boolean allowSetHomeInNether = true;
|
private boolean allowSetHomeInNether = true;
|
||||||
|
|
||||||
@ConfigEntry(path = "island.sethome.nether.require-confirmation")
|
@ConfigEntry(path = "island.sethome.nether.require-confirmation")
|
||||||
private boolean requireConfirmationToSetHomeInNether = true;
|
private boolean requireConfirmationToSetHomeInNether = true;
|
||||||
|
|
||||||
|
@ConfigComment("Allow setting home in the end. Only available on end islands, not vanilla end.")
|
||||||
@ConfigEntry(path = "island.sethome.the-end.allow")
|
@ConfigEntry(path = "island.sethome.the-end.allow")
|
||||||
private boolean allowSetHomeInTheEnd = true;
|
private boolean allowSetHomeInTheEnd = true;
|
||||||
|
|
||||||
|
@ -379,9 +379,11 @@ island:
|
|||||||
on-leave: []
|
on-leave: []
|
||||||
sethome:
|
sethome:
|
||||||
nether:
|
nether:
|
||||||
|
# Allow setting home in the nether. Only available on nether islands, not vanilla nether
|
||||||
allow: true
|
allow: true
|
||||||
require-confirmation: true
|
require-confirmation: true
|
||||||
the-end:
|
the-end:
|
||||||
|
# Allow setting home in the end. Only available on end islands, not vanilla end
|
||||||
allow: true
|
allow: true
|
||||||
require-confirmation: true
|
require-confirmation: true
|
||||||
deaths:
|
deaths:
|
||||||
|
Loading…
Reference in New Issue
Block a user