-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add maxSizeOfElevator & whitelist to the config.yml
- Loading branch information
1 parent
d1ffb57
commit 863e24b
Showing
4 changed files
with
93 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,17 @@ | ||
ChunkSmartManagement: false | ||
# When set to true, it will load elevators if the chunk they are in is loaded, and unload them if the chunk is unloaded. | ||
ChunkSmartManagement: false | ||
|
||
# Maximum volume of the elevator bounding box. | ||
# Change this value to set the max size limit of an elevator. | ||
# Use /elevator volume with WorldEdit to find the volume of a selected WorldEdit region. | ||
# Adjust maxSizeOfElevator based on the volume you get from /elevator volume, to fit your needs. | ||
maxSizeOfElevator: 50 | ||
|
||
# Only certain players can create elevators. | ||
# If enabled, only players in the whitelist can create elevators, no matter if they have the permission or even if they are OP. | ||
whitelist: | ||
enabled: false | ||
players: | ||
- "player1" | ||
- "player2" | ||
- "player3" |