-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
77 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ plugins { | |
} | ||
|
||
group = 'org.evlis' | ||
version = '0.4.2' | ||
version = '1.0.0' | ||
|
||
def targetJavaVersion = 21 | ||
|
||
|
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,19 +1,21 @@ | ||
### Lunamatic configuration ### | ||
# Choose which moon effects to enable, | ||
# for blood moons, new moon must be enabled, | ||
# and for harvest moons the full moon must be enabled. | ||
# Choose which moon effects to enable | ||
fullMoonEnabled: true | ||
newMoonEnabled: true | ||
## Ignored unless fullMoonEnabled == true | ||
harvestMoonEnabled: true | ||
## Ignored unless newMoonEnabled == true | ||
bloodMoonEnabled: true | ||
### Chance for Blood and Harvest Moons ### | ||
# Chance for Blood and Harvest Moons ### | ||
# This sets the number of sides in the dice roll, | ||
# e.g. 2 = cointoss (50/50), 6 = normal die (17% chance) | ||
# e.g. 2 = coin-toss (50/50), 6 = normal die (17% chance) | ||
bloodMoonDieSides: 2 | ||
harvestMoonDieSides: 2 | ||
### Set worlds to disable moon-effects on ### | ||
# by default both nether & the_end cannot have moon effects | ||
# Set worlds to disable moon-effects on ### | ||
# by design both nether & the_end cannot have moon effects | ||
disabledWorlds: | ||
- world | ||
- world_nether | ||
- world_the_end | ||
- world_the_end | ||
# Do you want to check for updates at server start? | ||
checkForUpdates: true |