Files
admin 35b7063666 nerfs to sleep, sanity, timelength - populated defaults - shader settings edits - aktome added
Populated the default config folder - it turns out there are certain configs that are created for each world, you can copy world configs here and they will become the defaults for each world.

day and night time is 5 times longer.

You can sleep in bed, but it no longer advances the time for any reason. Sleep is for the weak.

no longer go immediately insane upon dimension change, but it's still VERY detrimental and immediate round trips are still awful.

rain is now only mildly detrimental to sanity, in most scenarios rain will not cause your sanity to drop but reduce how fast it rises.

Added akashic tome, this lets us bundle mod documentation into one damn book.

Shaders have been messed with, feel free to edit these.
2025-05-16 23:11:49 -05:00

23 lines
1.7 KiB
TOML

#Server configuration settings
[server]
#Set this to true to remove any BlockEntity that throws an error in its update method instead of closing the server and reporting a crash log. BE WARNED THIS COULD SCREW UP EVERYTHING USE SPARINGLY WE ARE NOT RESPONSIBLE FOR DAMAGES.
removeErroringBlockEntities = false
#Set this to true to remove any Entity (Note: Does not include BlockEntities) that throws an error in its tick method instead of closing the server and reporting a crash log. BE WARNED THIS COULD SCREW UP EVERYTHING USE SPARINGLY WE ARE NOT RESPONSIBLE FOR DAMAGES.
removeErroringEntities = false
#Set this to true to check the entire entity's collision bounding box for ladders instead of just the block they are in. Causes noticeable differences in mechanics so default is vanilla behavior. Default: false.
fullBoundingBoxLadders = false
#Base zombie summoning spawn chance. Allows changing the bonus zombie summoning mechanic.
#Range: 0.0 ~ 1.0
zombieBaseSummonChance = 0.1
#Chance that a zombie (or subclass) is a baby. Allows changing the zombie spawning mechanic.
#Range: 0.0 ~ 1.0
zombieBabyChance = 0.05
#The permission handler used by the server. Defaults to forge:default_handler if no such handler with that name is registered.
permissionHandler = "forge:default_handler"
#Set this to true to enable advertising the dedicated server to local LAN clients so that it shows up in the Multiplayer screen automatically.
advertiseDedicatedServerToLan = true
#Set this to true to enable living entities to use items with durations of 0. Fixes being able to use Eyes of Ender repeatedly by holding down the use button. Disabled by default as it could change interactions with items of existing mods.
useItemWithDurationZero = false