-
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.
config added & synced to global vars
- Loading branch information
Showing
5 changed files
with
69 additions
and
1 deletion.
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.3.10' | ||
version = '0.4.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
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Lunamatic configuration | ||
## Choose which moon effects to enable (default all true): | ||
fullMoonEnabled: true | ||
newMoonEnabled: true | ||
harvestMoonEnabled: true | ||
bloodMoonEnabled: true | ||
## 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) | ||
bloodMoonDieSides: 2 | ||
harvestMoonDieSides: 2 | ||
## Set worlds to disable moon-effects on | ||
# by default both nether & the_end cannot have moon effects | ||
disabledWorlds: | ||
- world | ||
- world_nether | ||
- world_the_end |