Changed Hysteria shader default params - slightly less desaturation but not complete removal - caves now have true darkness (shaders override minecraft gamma, however true darkness will be retained as a fallback) - basic sun burn config that allows players to retreat to other dimensions (with a sun) to avoid getting burned - fire resist potions prevent sun burn from even applying (prevents the fire effect from showing on the screen as a result) - tinted glass prevents sunburn - added vanilla tweaks lowered first person fire this was added because although the create netherite diving gear stops fire damage, the player still renders as on fire in both 3rd and 1st person blocking half the players view.
32 lines
1.6 KiB
TOML
32 lines
1.6 KiB
TOML
|
|
[General]
|
|
#If enabled your console will fill with spam showing the various types of data you will need to fine tune this config
|
|
showConsoleIDS = false
|
|
#If selected the rest of the config is pointless. Default: false
|
|
tanningLotion = false
|
|
#Should players burn? Default: false
|
|
burnPlayers = true
|
|
#Should ops NOT burn? Default: true
|
|
noOpBurn = false
|
|
#If enabled armor in the head slot will prevent burning. Default: false
|
|
checkArmor = false
|
|
#If enabled armor will take damage if 'checkArmor' is enabled. Default: false
|
|
damageArmor = false
|
|
#If enabled effects will be checked to see if they prevent burning. Default: false
|
|
checkEffects = true
|
|
#Allow all of a mods' mobs from burning just by specifying the modid. Comma separated and quoted list
|
|
#Default: "iceandfire"
|
|
mods = ["iceandfire"]
|
|
#Allows specific mods' mobs to burn just by specifying their full id for example modid:mobname. Comma separated and quoted list
|
|
#Default: "minecraft:zombie","minecraft:skeleton"
|
|
mobs = ["minecraft:zombie", "minecraft:skeleton"]
|
|
#Allows specific mods' blocks to be ignored while checking if you are able to see the sky by specifying their full id for example modid:blockname. Comma separated and quoted list
|
|
#Example: "minecraft:black_stained_glass"
|
|
ignoredBlocks = ["minecraft:tinted_glass"]
|
|
#If enabled the `dimensions` list will become a blacklist. Default: true
|
|
invertDimensions = false
|
|
#Specify dimensions that allow sun burning by specifying their full id for example modid:dimensionname. (If `invertDimensions` is set to true this turns into a dimension blacklist)
|
|
#Example: "minecraft:overworld"
|
|
dimensions = ["minecraft:overworld"]
|
|
|