update: config
This commit is contained in:
parent
12b88c27ae
commit
04e80fe4d1
16 changed files with 273 additions and 202 deletions
|
|
@ -32,12 +32,16 @@ migrateCopycatsOnInitialize = false
|
|||
copycat_beam = true
|
||||
copycat_board = true
|
||||
copycat_fence = true
|
||||
#.
|
||||
fluid_vessel = true
|
||||
large_crank_wheel = false
|
||||
crank_wheel = false
|
||||
inventory_access_port = true
|
||||
inventory_bridge = true
|
||||
#.
|
||||
kinetic_bridge = true
|
||||
cross_connector = true
|
||||
redstone_link_wildcard = true
|
||||
kinetic_battery = true
|
||||
|
||||
#.
|
||||
#Enable/disable categories of features. Disabling a category hides all related features. Values on server override clients
|
||||
|
|
|
|||
5
config/everycomp-client.toml
Normal file
5
config/everycomp-client.toml
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
|
||||
[general]
|
||||
#Enables the generation of dynamic assets. This is required for the mod to work properly. Turn off if you chose to add all the generated assets via datapack manually. This can speedup boot times for modpacks. Note that the generated assets will depend on loaded datapacks
|
||||
generate_dynamic_assets = true
|
||||
|
||||
|
|
@ -10,6 +10,8 @@
|
|||
mod_version_check_packet = false
|
||||
#Don't touch unless you are told to
|
||||
debug_packet = false
|
||||
#Enables the generation of dynamic assets. This is required for the mod to work properly. Turn off if you chose to add all the generated assets via datapack manually. This can speedup boot times for modpacks. Note that the generated assets will depend on loaded datapacks
|
||||
generate_dynamic_assets = true
|
||||
|
||||
[general.tooltips]
|
||||
#Enabled tooltips showing which mod an EC item is from
|
||||
|
|
|
|||
|
|
@ -45,11 +45,19 @@
|
|||
ironwood = true
|
||||
ipe = true
|
||||
|
||||
[types.wood_type.ad_astra]
|
||||
aeronos = true
|
||||
strophar = true
|
||||
glacian = true
|
||||
|
||||
[types.leaves_type]
|
||||
|
||||
[types.leaves_type.gtceu]
|
||||
rubber = false
|
||||
|
||||
[types.leaves_type.ad_astra]
|
||||
glacian = true
|
||||
|
||||
#Disables specific entries
|
||||
[entries]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,110 +1,104 @@
|
|||
{
|
||||
"disableCrouchMining": false,
|
||||
"disableExtraToolDamage": false,
|
||||
"disableExtraFoodExhaustion": false,
|
||||
"treeLifetimeLength": 4.0,
|
||||
"dynamicMiningSpeed": {
|
||||
"disable": false,
|
||||
"speedMultiplication": 0.05,
|
||||
"maxSpeedMultiplication": 16.0
|
||||
},
|
||||
"trees": {
|
||||
"standardTree": {
|
||||
"algorithm": {
|
||||
"maxLeavesRadius": 15,
|
||||
"maxLogAmount": 512,
|
||||
"shouldFallOnMaxLogAmount": true,
|
||||
"shouldIgnorePersistentLeaves": true
|
||||
},
|
||||
"logFilter": {
|
||||
"whitelistedTags": [
|
||||
"minecraft:logs"
|
||||
],
|
||||
"whitelist": [],
|
||||
"blacklist": []
|
||||
},
|
||||
"leavesFilter": {
|
||||
"whitelistedTags": [
|
||||
"minecraft:leaves"
|
||||
],
|
||||
"whitelist": [],
|
||||
"blacklist": []
|
||||
},
|
||||
"extraBlockFilter": {
|
||||
"whitelistedTags": [],
|
||||
"whitelist": [
|
||||
"minecraft:vine",
|
||||
"minecraft:bee_nest",
|
||||
"minecraft:cocoa"
|
||||
],
|
||||
"blacklist": []
|
||||
},
|
||||
"enabled": true,
|
||||
"onlyFallWithRequiredTool": false,
|
||||
"allowedToolFilter": {
|
||||
"whitelistedTags": [
|
||||
"minecraft:axes"
|
||||
],
|
||||
"whitelist": [],
|
||||
"blacklist": []
|
||||
}
|
||||
},
|
||||
"verticalTree": {
|
||||
"filter": {
|
||||
"whitelistedTags": [],
|
||||
"whitelist": [
|
||||
"minecraft:cactus",
|
||||
"minecraft:bamboo"
|
||||
],
|
||||
"blacklist": []
|
||||
},
|
||||
"enabled": true,
|
||||
"onlyFallWithRequiredTool": false,
|
||||
"allowedToolFilter": {
|
||||
"whitelistedTags": [],
|
||||
"whitelist": [],
|
||||
"blacklist": []
|
||||
}
|
||||
},
|
||||
"chorusTree": {
|
||||
"enabled": true,
|
||||
"filter": {
|
||||
"whitelist": [
|
||||
"tfg:lunar_chorus_plant",
|
||||
"tfg:lunar_chorus_flower"
|
||||
]
|
||||
},
|
||||
"onlyFallWithRequiredTool": false,
|
||||
"allowedToolFilter": {
|
||||
"whitelistedTags": [],
|
||||
"whitelist": [],
|
||||
"blacklist": []
|
||||
}
|
||||
},
|
||||
"mushroomTree": {
|
||||
"stemFilter": {
|
||||
"whitelistedTags": [],
|
||||
"whitelist": [
|
||||
"minecraft:mushroom_stem"
|
||||
],
|
||||
"blacklist": []
|
||||
},
|
||||
"capFilter": {
|
||||
"whitelistedTags": [],
|
||||
"whitelist": [
|
||||
"minecraft:red_mushroom_block",
|
||||
"minecraft:brown_mushroom_block",
|
||||
"minecraft:shroomlight"
|
||||
],
|
||||
"blacklist": []
|
||||
},
|
||||
"enabled": true,
|
||||
"onlyFallWithRequiredTool": false,
|
||||
"allowedToolFilter": {
|
||||
"whitelistedTags": [],
|
||||
"whitelist": [],
|
||||
"blacklist": []
|
||||
}
|
||||
}
|
||||
}
|
||||
"disableCrouchMining": false,
|
||||
"disableExtraToolDamage": false,
|
||||
"disableExtraFoodExhaustion": false,
|
||||
"treeLifetimeLength": 4.0,
|
||||
"dynamicMiningSpeed": {
|
||||
"disable": false,
|
||||
"speedMultiplication": 0.05,
|
||||
"maxSpeedMultiplication": 16.0
|
||||
},
|
||||
"trees": {
|
||||
"standardTree": {
|
||||
"algorithm": {
|
||||
"maxLeavesRadius": 15,
|
||||
"maxLogAmount": 512,
|
||||
"shouldFallOnMaxLogAmount": true,
|
||||
"shouldIgnorePersistentLeaves": true
|
||||
},
|
||||
"logFilter": {
|
||||
"whitelistedTags": [
|
||||
"minecraft:logs"
|
||||
],
|
||||
"whitelist": [],
|
||||
"blacklist": []
|
||||
},
|
||||
"leavesFilter": {
|
||||
"whitelistedTags": [
|
||||
"minecraft:leaves"
|
||||
],
|
||||
"whitelist": [],
|
||||
"blacklist": []
|
||||
},
|
||||
"extraBlockFilter": {
|
||||
"whitelistedTags": [],
|
||||
"whitelist": [
|
||||
"minecraft:vine",
|
||||
"minecraft:bee_nest",
|
||||
"minecraft:cocoa"
|
||||
],
|
||||
"blacklist": []
|
||||
},
|
||||
"enabled": true,
|
||||
"onlyFallWithRequiredTool": false,
|
||||
"allowedToolFilter": {
|
||||
"whitelistedTags": [
|
||||
"minecraft:axes"
|
||||
],
|
||||
"whitelist": [],
|
||||
"blacklist": []
|
||||
}
|
||||
},
|
||||
"verticalTree": {
|
||||
"filter": {
|
||||
"whitelistedTags": [],
|
||||
"whitelist": [
|
||||
"minecraft:cactus",
|
||||
"minecraft:bamboo"
|
||||
],
|
||||
"blacklist": []
|
||||
},
|
||||
"enabled": true,
|
||||
"onlyFallWithRequiredTool": false,
|
||||
"allowedToolFilter": {
|
||||
"whitelistedTags": [],
|
||||
"whitelist": [],
|
||||
"blacklist": []
|
||||
}
|
||||
},
|
||||
"chorusTree": {
|
||||
"enabled": true,
|
||||
"onlyFallWithRequiredTool": false,
|
||||
"allowedToolFilter": {
|
||||
"whitelistedTags": [],
|
||||
"whitelist": [],
|
||||
"blacklist": []
|
||||
}
|
||||
},
|
||||
"mushroomTree": {
|
||||
"stemFilter": {
|
||||
"whitelistedTags": [],
|
||||
"whitelist": [
|
||||
"minecraft:mushroom_stem"
|
||||
],
|
||||
"blacklist": []
|
||||
},
|
||||
"capFilter": {
|
||||
"whitelistedTags": [],
|
||||
"whitelist": [
|
||||
"minecraft:red_mushroom_block",
|
||||
"minecraft:brown_mushroom_block",
|
||||
"minecraft:shroomlight"
|
||||
],
|
||||
"blacklist": []
|
||||
},
|
||||
"enabled": true,
|
||||
"onlyFallWithRequiredTool": false,
|
||||
"allowedToolFilter": {
|
||||
"whitelistedTags": [],
|
||||
"whitelist": [],
|
||||
"blacklist": []
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,74 +1,74 @@
|
|||
{
|
||||
"enableDropsForNonPlayer": true,
|
||||
"enableCrashExplosion": true,
|
||||
"enableCrashBlockDestruction": false,
|
||||
"enableCrashFire": false,
|
||||
"crashExplosionRadius": 2.0,
|
||||
"crashDamage": 2.0,
|
||||
"preventKillThroughCrash": true,
|
||||
"healthBarRow": 0,
|
||||
"damagePerHealthPoint": 30,
|
||||
"separateCamera": true,
|
||||
"useThirdPersonByDefault": true,
|
||||
"enableTrails": true,
|
||||
"renderDistance": 192.0,
|
||||
"fuelConsumption": 1.0,
|
||||
"windClearWeather": 1.0,
|
||||
"windRainWeather": 3.0,
|
||||
"windThunderWeather": 3.0,
|
||||
"repairSpeed": 0.025,
|
||||
"repairExhaustion": 0.5,
|
||||
"collisionDamage": true,
|
||||
"collisionDamageMultiplier": 40.0,
|
||||
"burnFuelInCreative": false,
|
||||
"acceptVanillaFuel": true,
|
||||
"useCustomKeybindSystem": true,
|
||||
"showHotbarEngineGauge": true,
|
||||
"weaponsAreDestructive": false,
|
||||
"dropAircraft": true,
|
||||
"dropInventory": true,
|
||||
"dropUpgrades": false,
|
||||
"regenerateHealthEveryNTicks": 0,
|
||||
"requireShiftForRepair": false,
|
||||
"bombBayEntity": {
|
||||
"minecraft:egg": "tfc:chicken"
|
||||
},
|
||||
"rotaryCannonDamage": 5.0,
|
||||
"heavyCrossBowVelocity": 3.0,
|
||||
"fuelList": {
|
||||
"minecraft:blaze_powder": 1200,
|
||||
"gtceu:coke_gem": 1200,
|
||||
"beneath:cursecoal": 1200
|
||||
},
|
||||
"validDimensions": {
|
||||
"minecraft:the_end": true,
|
||||
"minecraft:the_nether": true,
|
||||
"minecraft:overworld": true,
|
||||
"ad_astra:earth_orbit": false,
|
||||
"ad_astra:moon": false,
|
||||
"ad_astra:moon_orbit": false,
|
||||
"ad_astra:mars": false,
|
||||
"ad_astra:mars_orbit": false,
|
||||
"ad_astra:venus_orbit": false,
|
||||
"ad_astra:mercury": false,
|
||||
"ad_astra:mercury_orbit": false,
|
||||
"ad_astra:glacio": false,
|
||||
"ad_astra:glacio_orbit": false
|
||||
},
|
||||
"gunpowderAmmunition": {
|
||||
"minecraft:gunpowder": 100
|
||||
},
|
||||
"arrowAmmunition": {
|
||||
"minecraft:arrow": 100,
|
||||
"minecraft:spectral_arrow": 100,
|
||||
"minecraft:tipped_arrow": 100
|
||||
},
|
||||
"bombBayAmmunition": {
|
||||
"minecraft:tnt": 100,
|
||||
"gtceu:powderbarrel": 80,
|
||||
"gtceu:industrial_tnt": 50,
|
||||
"gtceu:dynamite": 200
|
||||
},
|
||||
"version": 1,
|
||||
"name": "immersive_aircraft"
|
||||
"enableDropsForNonPlayer": true,
|
||||
"enableCrashExplosion": true,
|
||||
"enableCrashBlockDestruction": false,
|
||||
"enableCrashFire": false,
|
||||
"crashExplosionRadius": 2.0,
|
||||
"crashDamage": 2.0,
|
||||
"preventKillThroughCrash": true,
|
||||
"healthBarRow": 0,
|
||||
"damagePerHealthPoint": 30,
|
||||
"separateCamera": true,
|
||||
"useThirdPersonByDefault": true,
|
||||
"enableTrails": true,
|
||||
"renderDistance": 192.0,
|
||||
"fuelConsumption": 1.0,
|
||||
"windClearWeather": 1.0,
|
||||
"windRainWeather": 3.0,
|
||||
"windThunderWeather": 3.0,
|
||||
"repairSpeed": 0.025,
|
||||
"repairExhaustion": 0.5,
|
||||
"collisionDamage": true,
|
||||
"collisionDamageMultiplier": 40.0,
|
||||
"burnFuelInCreative": false,
|
||||
"acceptVanillaFuel": true,
|
||||
"useCustomKeybindSystem": true,
|
||||
"showHotbarEngineGauge": true,
|
||||
"weaponsAreDestructive": false,
|
||||
"dropAircraft": true,
|
||||
"dropInventory": true,
|
||||
"dropUpgrades": false,
|
||||
"regenerateHealthEveryNTicks": 0,
|
||||
"requireShiftForRepair": false,
|
||||
"bombBayEntity": {
|
||||
"minecraft:egg": "tfc:chicken"
|
||||
},
|
||||
"rotaryCannonDamage": 5.0,
|
||||
"heavyCrossBowVelocity": 3.0,
|
||||
"fuelList": {
|
||||
"minecraft:blaze_powder": 1200,
|
||||
"gtceu:coke_gem": 1200,
|
||||
"beneath:cursecoal": 1200
|
||||
},
|
||||
"validDimensions": {
|
||||
"minecraft:the_end": true,
|
||||
"minecraft:the_nether": true,
|
||||
"minecraft:overworld": true,
|
||||
"ad_astra:earth_orbit": false,
|
||||
"ad_astra:moon": false,
|
||||
"ad_astra:moon_orbit": false,
|
||||
"ad_astra:mars": false,
|
||||
"ad_astra:mars_orbit": false,
|
||||
"ad_astra:venus_orbit": false,
|
||||
"ad_astra:mercury": false,
|
||||
"ad_astra:mercury_orbit": false,
|
||||
"ad_astra:glacio": false,
|
||||
"ad_astra:glacio_orbit": false
|
||||
},
|
||||
"gunpowderAmmunition": {
|
||||
"minecraft:gunpowder": 100
|
||||
},
|
||||
"arrowAmmunition": {
|
||||
"minecraft:arrow": 100,
|
||||
"minecraft:spectral_arrow": 100,
|
||||
"minecraft:tipped_arrow": 100
|
||||
},
|
||||
"bombBayAmmunition": {
|
||||
"minecraft:tnt": 100,
|
||||
"gtceu:powderbarrel": 80,
|
||||
"gtceu:industrial_tnt": 50,
|
||||
"gtceu:dynamite": 200
|
||||
},
|
||||
"version": 1,
|
||||
"name": "immersive_aircraft"
|
||||
}
|
||||
|
|
@ -57,6 +57,16 @@
|
|||
"greate": {
|
||||
"belt_icon": true
|
||||
},
|
||||
"jadeaddons.create": {
|
||||
"filter": true,
|
||||
"backtank_capacity": true,
|
||||
"goggles.requires_goggles": true,
|
||||
"goggles": false,
|
||||
"blaze_burner": true,
|
||||
"exact_block": true,
|
||||
"goggles.detailed": false,
|
||||
"placard": true
|
||||
},
|
||||
"gtceu": {
|
||||
"primitive_pump": true,
|
||||
"auto_output_info": true,
|
||||
|
|
@ -97,9 +107,6 @@
|
|||
"jade_chamber": true,
|
||||
"jade_wireless": true
|
||||
},
|
||||
"lootr": {
|
||||
"info": true
|
||||
},
|
||||
"balm": {
|
||||
"jade": true
|
||||
},
|
||||
|
|
@ -195,20 +202,15 @@
|
|||
"lightroom": true,
|
||||
"photograph_frame": true
|
||||
},
|
||||
"create": {
|
||||
"filter": true,
|
||||
"backtank_capacity": true,
|
||||
"goggles.requires_goggles": true,
|
||||
"goggles": false,
|
||||
"blaze_burner": true,
|
||||
"exact_block": true,
|
||||
"crafting_blueprint": true,
|
||||
"goggles.detailed": false,
|
||||
"placard": true
|
||||
"jadeaddons.lootr": {
|
||||
"info": true
|
||||
},
|
||||
"corpse": {
|
||||
"corpse": true
|
||||
},
|
||||
"afc": {
|
||||
"tap": true
|
||||
},
|
||||
"tfc_support_indicator": {
|
||||
"support_indicator": true
|
||||
}
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@
|
|||
"ae2:pattern_provider": null,
|
||||
"ae2:power_storage": null,
|
||||
"ae2:server_data": null,
|
||||
"afc:tap": null,
|
||||
"alekiships:block": null,
|
||||
"alekiships:brewing_stand": null,
|
||||
"alekiships:furnace": null,
|
||||
|
|
@ -89,6 +90,19 @@
|
|||
"jade:mod_name": null,
|
||||
"jade:object_name": null,
|
||||
"jade:registry_name": null,
|
||||
"jadeaddons.create:backtank_capacity": null,
|
||||
"jadeaddons.create:blaze_burner": null,
|
||||
"jadeaddons.create:contraption_inv": null,
|
||||
"jadeaddons.create:crafting_blueprint": null,
|
||||
"jadeaddons.create:exact_block": null,
|
||||
"jadeaddons.create:filter": null,
|
||||
"jadeaddons.create:goggles": null,
|
||||
"jadeaddons.create:hide_boiler_tanks": null,
|
||||
"jadeaddons.create:package": null,
|
||||
"jadeaddons.create:placard": null,
|
||||
"jadeaddons.create:table_cloth": null,
|
||||
"jadeaddons.lootr:info": null,
|
||||
"jadeaddons.lootr:inventory": null,
|
||||
"lootr:info": null,
|
||||
"lootr:inventory": null,
|
||||
"minecraft:animal_owner": null,
|
||||
|
|
|
|||
|
|
@ -48,6 +48,7 @@
|
|||
# mixin.feature.snapshot_easter_egg=true # (default)
|
||||
# mixin.feature.spam_thread_dump=false # (default)
|
||||
# mixin.feature.spark_profile_launch=false # (default)
|
||||
# mixin.feature.spark_profile_world_join=false # (default)
|
||||
# mixin.feature.stalled_chunk_load_detection=false # (default)
|
||||
# mixin.feature.warn_missing_perf_mods=true # (default)
|
||||
# mixin.launch.class_search_cache=true # (default)
|
||||
|
|
@ -90,7 +91,6 @@
|
|||
# mixin.perf.memoize_creative_tab_build=true # (default)
|
||||
# mixin.perf.model_optimizations=true # (default)
|
||||
# mixin.perf.mojang_registry_size=true # (default)
|
||||
# mixin.perf.nbt_memory_usage=true # (default)
|
||||
# mixin.perf.patchouli_deduplicate_books=true # (default)
|
||||
# mixin.perf.potential_spawns_alloc=true # (default)
|
||||
# mixin.perf.reduce_blockstate_cache_rebuilds=true # (default)
|
||||
|
|
|
|||
|
|
@ -1,15 +1,16 @@
|
|||
#Packet Fixer config file.
|
||||
#Default values (minecraft default): nbtMaxSize 2097152, packetSize 1048576, decoderSize 8388608 and varInt21Size 3.
|
||||
#Max values are 2147483647 for packetSize/decoderSize/varInt21 and 9223372036854775807 for nbtMaxSize.
|
||||
#Fri May 30 02:48:38 YEKT 2025
|
||||
chunkPacketData=2097152
|
||||
varLong=10
|
||||
nbtMaxSize=209715200
|
||||
#Sun Jun 29 07:00:58 YEKT 2025
|
||||
utfSize=3276700
|
||||
allSizesUnlimited=true
|
||||
decoderSize=838860800
|
||||
forceUnlimitedNbtEnabled=false
|
||||
packetSize=104857600
|
||||
stringSize=32767
|
||||
timeout=90
|
||||
varInt21=8
|
||||
varInt=5
|
||||
chunkPacketData=2097152
|
||||
varLong=10
|
||||
nbtMaxSize=209715200
|
||||
decoderSize=838860800
|
||||
|
|
|
|||
20
config/ponder-client.toml
Normal file
20
config/ponder-client.toml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#.
|
||||
#Slow down a ponder scene whenever there is text on screen.
|
||||
comfyReading = false
|
||||
#.
|
||||
#Show additional info in the ponder view and reload scene scripts more frequently.
|
||||
editingMode = false
|
||||
|
||||
#.
|
||||
#Settings for the Placement Assist
|
||||
[placementAssist]
|
||||
#.
|
||||
#What indicator should be used when showing where the assisted placement ends up relative to your crosshair
|
||||
#Choose 'NONE' to disable the Indicator altogether
|
||||
#Allowed Values: TEXTURE, TRIANGLE, NONE
|
||||
indicatorType = "TEXTURE"
|
||||
#.
|
||||
#Change the size of the Indicator by this multiplier
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
indicatorScale = 1.0
|
||||
|
||||
|
|
@ -5,6 +5,9 @@ enabled=true
|
|||
# This setting requires you to be in singleplayer or having the mod installed on the server
|
||||
# 1.0 is the physically correct value
|
||||
attenuation_factor=1.0
|
||||
# The ray distance at which reverb starts
|
||||
# 0.0 disables reverb attenuation
|
||||
reverb_attenuation_distance=0.0
|
||||
# The volume of simulated reverberations
|
||||
reverb_gain=1.0
|
||||
# The brightness of reverberation
|
||||
|
|
@ -67,6 +70,8 @@ update_moving_sounds=false
|
|||
# Lower values mean more frequent reevaluation but also more lag
|
||||
# This option only takes effect if update_moving_sounds is enabled
|
||||
sound_update_interval=5
|
||||
# The maximum distance a sound can be processed
|
||||
max_sound_processing_distance=512.0
|
||||
# Disable level clone and cache. This will fall back to original main thread access.
|
||||
# WARNING! Enabling this will cause instability and issues with other mods.
|
||||
unsafe_level_access=false
|
||||
|
|
|
|||
11
config/tfclunchbox-common.toml
Normal file
11
config/tfclunchbox-common.toml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
|
||||
#Food Traits Configuration
|
||||
#NOTE: Changes to trait values require game restart to take effect
|
||||
[food_traits]
|
||||
#Decay modifier for COOLED trait (lower = food lasts longer)
|
||||
#Range: 0.01 ~ 1.0
|
||||
cooled_decay_modifier = 0.3
|
||||
#Decay modifier for PRESERVED trait (lower = food lasts longer)
|
||||
#Range: 0.01 ~ 1.0
|
||||
preserved_decay_modifier = 0.55
|
||||
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
#Should create compatibility be enabled?
|
||||
#Should be create compat enabled?
|
||||
createCompat = true
|
||||
#Should TFC ambiental compatibility be enabled?
|
||||
#Should be tfc ambiental compat enabled?
|
||||
tfcAmbientalCompat = true
|
||||
|
||||
|
|
|
|||
|
|
@ -6,4 +6,7 @@
|
|||
#Defines default Belt Grinder appearance
|
||||
#Range: 0 ~ 4
|
||||
defaultBeltGrinderSkin = 0
|
||||
#.
|
||||
#You can insert and extract from the Centrifuge while it is working.
|
||||
easyCentrifuge = false
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
#Settings for Water Flasks
|
||||
#Allow drinking when not thirsty? Could be useful or wasteful if that's not water in there... Default False
|
||||
thirstyDrinking = false
|
||||
#Empty flask when shift-right-clicked? Generally a useful feature, but does annoy a certain streamer... Default True
|
||||
shiftClickToEmpty = true
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue