Finished the Config System

This commit is contained in:
Daniel 2022-10-04 23:46:51 -04:00
parent f039c04e08
commit 7b9942d5cc
3 changed files with 13 additions and 2 deletions

View File

@ -82,15 +82,22 @@ wsWorldSpawn:
#Warning: Spelling Matters, Capitalization Does not
worldGameMode: 'Survival'
# places the player at their last known location in the world
useLastLocation: false
useLastLocation: false;
#The point the player should be placed when entering a WS World
#for the first Time
defaultWorldSpawnPoint:
worldName: 'world'
x: 0
y: 60
z: 0
#############
# Dev Tools #
#############
# These Config Options are for the Devlopment and Maintenace
# Of World System. These features are not for production.
devcmds: false;
###################
# World Gamerules #
###################

View File

@ -0,0 +1,2 @@
package de.butzlabben.world.config;public class GameruleConfig {
}

View File

@ -0,0 +1,2 @@
package de.butzlabben.world.config;public class TestGameRules {
}