-
-
Notifications
You must be signed in to change notification settings - Fork 515
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2079 from NillerMedDild/develop
0.4.10
- Loading branch information
Showing
81 changed files
with
2,763 additions
and
1,540 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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -157,3 +157,5 @@ config.json | |
.DS_Store | ||
.DS_Store? | ||
|
||
config/rftoolsdim-client.toml | ||
config/clienttweaks-client.toml |
This file was deleted.
Oops, something went wrong.
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
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
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 |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
#Recipes and Integrations | ||
[recipes] | ||
#Enable vanilla-style recipes. | ||
vanillaRecipes = false | ||
vanillaRecipes = true | ||
|
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,16 @@ | ||
|
||
#This is the Client config for ConstructionWand. | ||
#If you're not familiar with Forge's new split client/server config, let me explain: | ||
#Client config is stored in the /config folder and only contains client specific settings like graphics and keybinds. | ||
#Mod behavior is configured in the Server config, which is world-specific and thus located | ||
#in the /saves/myworld/serverconfig folder. If you want to change the serverconfig for all | ||
#new worlds, copy the config files in the /defaultconfigs folder. | ||
[keys] | ||
#Key code of OPTKEY (Default: Left Control). Look up key codes under https://www.glfw.org/docs/3.3/group__keys.html | ||
#Range: 0 ~ 350 | ||
OptKey = 341 | ||
#Press SNEAK+OPTKEY instead of SNEAK for changing wand mode/direction lock | ||
ShiftOpt = false | ||
#Press SNEAK+OPTKEY instead of SNEAK for opening wand GUI | ||
ShiftOptGUI = true | ||
|
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,21 @@ | ||
|
||
["Dynamic Chunk View Distance Settings"] | ||
#The minimum chunk view distance allowed to use. Default: 4 | ||
#Range: 3 ~ 200 | ||
minChunkViewDist = 4 | ||
#The maximum chunk view distance allowed to use. Set to the max a player could benefit from. Default: 20 | ||
#Range: 1 ~ 200 | ||
maxChunkViewDist = 12 | ||
#The average tick time to stabilize the chunk view distance around. Setting it higher than 50ms is not advised, as after 50ms the TPS will go below 20. Default: 45ms | ||
#Range: 10 ~ 100 | ||
meanAvgTickTime = 45 | ||
#The update frequency of average server tick time checks to update view distances. Default: 30sec | ||
#Range: 1 ~ 1000 | ||
viewDistanceUpdateRate = 30 | ||
#Whether to output log messages for actions done. This can be helpful to balance the other settings nicely. | ||
logMessages = true | ||
|
||
["Chunk slow unload settings"] | ||
#Enable slightly slower chunk unloading after load, helps with mods hot-loading chunks frequently. Default: true | ||
chunkunload = true | ||
|
Oops, something went wrong.