added an upsetting number of biomes + updates & optimizations
Added Terralith and Biomes O plenty for even more biomes As well as terrain generation optimization via faster random & c2me which adds threading for chunk generation updated Arphex which fixed an obscure crash with the broodmother
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@ -45,3 +45,4 @@ devtools/.sandbox-home/.local/share/recently-used.xbel
|
||||
devtools/.sandbox-home/.local/share/PrismLauncher/metacache
|
||||
1.20.1-FearFactoryTest/minecraft/libEffekseerNativeForJava.so
|
||||
/1.20.1-FearFactoryTest/minecraft/shaderpacks/Spooklementary_1.1
|
||||
/1.20.1-FearFactoryTest/minecraft/config/chunky/tasks
|
||||
|
@ -8,9 +8,9 @@
|
||||
"Boss rarity" = 1.0
|
||||
#This controls whether the stalker bosses (spider moth, scorpioid bloodluster, draconic voidlasher, tormentor) are included in general. Set to false if you only want the other mobs, and the bosses will become unable to be spawned in any way.
|
||||
"Boss inclusion" = true
|
||||
#Controls the spawnrate of ALL non-boss mobs in this mod, including minibosses and all regular arthropods. Default multiplier value is 5. You could more than double the ArPhEx spawnrates by setting it to 2 or 1. Lower values = more spawns (minimum value is 1). No maximum rarity. Avoid decimal and negative numbers.
|
||||
#Controls the vanilla biome-specific spawnrates of ALL non-boss mobs in this mod, including minibosses and all regular arthropods. Default multiplier value is 5. You could more than double the ArPhEx spawnrates by setting it to 2 or 1. Lower values = more spawns (minimum value is 1). No maximum rarity. Avoid decimal and negative numbers.
|
||||
"Non-boss global spawnrates" = 2.0
|
||||
#ArPhEx has an additional spawning system that gives a 1 in (10) chance to spawn a random ArPhEx mob each time the natural spawn triggers. This system allows ArPhEx mobs to spawn in non-vanilla overworld biomes, while still accounting for mob rarity. Default number is 10, meaning it has a 1 in 10 chance to spawn each time. Setting it to 0 disables the additional spawning system entirely. Avoid decimal and negative numbers.
|
||||
#ArPhEx has an additional spawning system that gives a 1 in (10) chance to spawn a random ArPhEx mob each time the natural spawn triggers. This system allows ArPhEx mobs to spawn in any non-vanilla overworld biomes, while still accounting for mob rarity. Default number is 10, meaning it has a 1 in 10 chance to spawn each time. Setting it to 0 disables the additional spawning system entirely. Avoid decimal and negative numbers.
|
||||
"Random-system spawn rates" = 10.0
|
||||
"All entities enabled/disabled" = true
|
||||
#Maximum colony tamed ants per player (furthest ants despawn, 20 default)
|
||||
@ -19,12 +19,14 @@
|
||||
"Crawling-restrict all mobs" = false
|
||||
#Specifically disables the Tormentor boss entirely. It will be unable to be spawned in any form if this is enabled.
|
||||
"Disable Tormentor" = false
|
||||
#Disabled by default. If enabled, most mobs will become able to spawn in any dimension, including dimensions from other mods - may cause issues with some mod dimensions.
|
||||
#Disabled by default. If enabled, most mobs will become able to spawn in any dimension, including dimensions from other mods - may cause issues with some mod dimensions. Note, however, that the mobs will have a low spawn weight in other dimensions.
|
||||
"Spawn in other dimensions" = true
|
||||
#By default, the Tormentor can spawn naturally once you defeat the first three bosses. At this point, you probably won't be ready yet to fight it, and so will be forced to seal it and locate a crawling portal (all intentional). Set to false to prevent this, and ensure the Tormentor can only spawn from being summoned. The earlier - Boss natural spawning - config option has the same effect, but also controls other bosses.
|
||||
"Tormentor initial natural spawning" = true
|
||||
#Do you want to massively amplify all ArPhEx spawns futher on top of the existing spawns? Enabling this will drastically amplfy random-system overworld spawns from the mod, and even add crawling dimension mobs like the spider ambusher into the overworld. Even the non-overworld bosses will spawn rarely in the overworld, except for the Tormentor (this must be summoned manually). Minibosses will spawn commonly. Perfect for fast-paced, intense gameplay!
|
||||
"Insanity Mode" = true
|
||||
#List IDs of any mobs you'd like to disable from the mod, separated by commas. You can find a mob's ID with the /summon command, but note that the arphex: part is not needed, and that this disables mobs completely from being spawned in any way, including existing mobs on world reload. Works on virtually all types of entities from the mod
|
||||
"Disable Specific Mobs" = ["mob_id", "mob_id", "mob_id (add as many as needed, e.g. spider_snatcher)"]
|
||||
|
||||
[Difficulty]
|
||||
#By default, the stalker bosses have hundreds of health points. Choose true to decrease their maximum to just 60 health. Avoid decimal and negative numbers.
|
||||
@ -37,7 +39,7 @@
|
||||
"Tormentor Max Health" = 1024.0
|
||||
#Value is in ticks. Since 20 ticks equate to a second, the default 25 ticks gives the Tormentor 1.25 seconds of immunity after each time it takes damage.
|
||||
"Tormentor Damage Speed Limit" = 20.0
|
||||
#With this mode enabled, all mobs from the mod become unable to target players for attack! For more peaceful gameplay, this is valuable. Full bosses such as the Tormentor and Voidlasher may not work fully, so you may want to disable them if using this setting
|
||||
#With this mode enabled, all mobs from the mod become unable to target players for attack! For more peaceful gameplay, this is valuable. Full bosses such as the Tormentor and Voidlasher may not follow this setting entirely, so you may want to disable them if using this setting
|
||||
"Friendly Mode" = false
|
||||
|
||||
[Other]
|
||||
@ -59,4 +61,6 @@
|
||||
"Tormentor Particles" = true
|
||||
#Enable Tormentor's ability to add blurring and desaturation shaders when Tormenting
|
||||
"Tormentor Shaders" = true
|
||||
#Set to false to disable mobs like locusts from breaking crops, and minibosses/bosses from breaking leaves. Does not affect tamed ant commands, or the Tormentor's attacks, however - you can disable that boss if necessary.
|
||||
"ArPhEx Griefing" = true
|
||||
|
||||
|
BIN
1.20.1-FearFactoryTest/minecraft/config/Terralith_1.20.x_v2.5.4.jar
(Stored with Git LFS)
Normal file
BIN
1.20.1-FearFactoryTest/minecraft/config/Terralith_1.20.x_v2.5.4.jar
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -99,17 +99,6 @@
|
||||
"value": 1000
|
||||
}
|
||||
},
|
||||
"forge:entity_gravity": {
|
||||
"enabled": false,
|
||||
"min": {
|
||||
"default": -8,
|
||||
"value": -8
|
||||
},
|
||||
"max": {
|
||||
"default": 8,
|
||||
"value": 8
|
||||
}
|
||||
},
|
||||
"obscure_api:resilience": {
|
||||
"enabled": false,
|
||||
"min": {
|
||||
@ -121,6 +110,17 @@
|
||||
"value": 100
|
||||
}
|
||||
},
|
||||
"forge:entity_gravity": {
|
||||
"enabled": false,
|
||||
"min": {
|
||||
"default": -8,
|
||||
"value": -8
|
||||
},
|
||||
"max": {
|
||||
"default": 8,
|
||||
"value": 8
|
||||
}
|
||||
},
|
||||
"attributeslib:armor_pierce": {
|
||||
"enabled": false,
|
||||
"min": {
|
||||
@ -198,17 +198,6 @@
|
||||
"value": 4
|
||||
}
|
||||
},
|
||||
"forge:entity_reach": {
|
||||
"enabled": false,
|
||||
"min": {
|
||||
"default": 0,
|
||||
"value": 0
|
||||
},
|
||||
"max": {
|
||||
"default": 1024,
|
||||
"value": 1024
|
||||
}
|
||||
},
|
||||
"obscure_api:magic_resistance": {
|
||||
"enabled": false,
|
||||
"min": {
|
||||
@ -220,6 +209,17 @@
|
||||
"value": 100
|
||||
}
|
||||
},
|
||||
"forge:entity_reach": {
|
||||
"enabled": false,
|
||||
"min": {
|
||||
"default": 0,
|
||||
"value": 0
|
||||
},
|
||||
"max": {
|
||||
"default": 1024,
|
||||
"value": 1024
|
||||
}
|
||||
},
|
||||
"ars_nouveau:ars_nouveau.perk.saturation": {
|
||||
"enabled": false,
|
||||
"min": {
|
||||
@ -286,17 +286,6 @@
|
||||
"value": 1
|
||||
}
|
||||
},
|
||||
"hexcasting:scry_sight": {
|
||||
"enabled": false,
|
||||
"min": {
|
||||
"default": 0,
|
||||
"value": 0
|
||||
},
|
||||
"max": {
|
||||
"default": 1,
|
||||
"value": 1
|
||||
}
|
||||
},
|
||||
"not_enough_glyphs:not_enough_glyphs.perk.mana_discount": {
|
||||
"enabled": false,
|
||||
"min": {
|
||||
@ -308,6 +297,17 @@
|
||||
"value": 179769313486231570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
}
|
||||
},
|
||||
"hexcasting:scry_sight": {
|
||||
"enabled": false,
|
||||
"min": {
|
||||
"default": 0,
|
||||
"value": 0
|
||||
},
|
||||
"max": {
|
||||
"default": 1,
|
||||
"value": 1
|
||||
}
|
||||
},
|
||||
"minecraft:zombie.spawn_reinforcements": {
|
||||
"enabled": true,
|
||||
"min": {
|
||||
@ -363,7 +363,7 @@
|
||||
"value": 2048
|
||||
}
|
||||
},
|
||||
"forge:swim_speed": {
|
||||
"ars_nouveau:ars_nouveau.perk.wixie": {
|
||||
"enabled": false,
|
||||
"min": {
|
||||
"default": 0,
|
||||
@ -374,7 +374,7 @@
|
||||
"value": 1024
|
||||
}
|
||||
},
|
||||
"ars_nouveau:ars_nouveau.perk.wixie": {
|
||||
"forge:swim_speed": {
|
||||
"enabled": false,
|
||||
"min": {
|
||||
"default": 0,
|
||||
@ -396,17 +396,6 @@
|
||||
"value": 1000000
|
||||
}
|
||||
},
|
||||
"ars_nouveau:ars_elemental.perk.summon_power": {
|
||||
"enabled": false,
|
||||
"min": {
|
||||
"default": 0,
|
||||
"value": 0
|
||||
},
|
||||
"max": {
|
||||
"default": 10000,
|
||||
"value": 10000
|
||||
}
|
||||
},
|
||||
"obscure_api:accuracy": {
|
||||
"enabled": false,
|
||||
"min": {
|
||||
@ -418,6 +407,17 @@
|
||||
"value": 100
|
||||
}
|
||||
},
|
||||
"ars_nouveau:ars_elemental.perk.summon_power": {
|
||||
"enabled": false,
|
||||
"min": {
|
||||
"default": 0,
|
||||
"value": 0
|
||||
},
|
||||
"max": {
|
||||
"default": 10000,
|
||||
"value": 10000
|
||||
}
|
||||
},
|
||||
"attributeslib:crit_damage": {
|
||||
"enabled": false,
|
||||
"min": {
|
||||
|
@ -272,5 +272,142 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"biomesoplenty": {
|
||||
"withered_abyss": {
|
||||
"spawn": {
|
||||
"ambient": {
|
||||
"betternether": {
|
||||
"firefly": {
|
||||
"weight [default: 5]": 5,
|
||||
"minGroupSize [default: 1]": 1,
|
||||
"maxGroupSize [default: 3]": 3
|
||||
},
|
||||
"hydrogen_jellyfish": {
|
||||
"weight [default: 5]": 5,
|
||||
"minGroupSize [default: 2]": 2,
|
||||
"maxGroupSize [default: 6]": 6
|
||||
}
|
||||
}
|
||||
},
|
||||
"monster": {
|
||||
"betternether": {
|
||||
"naga": {
|
||||
"weight [default: 8]": 8,
|
||||
"minGroupSize [default: 3]": 3,
|
||||
"maxGroupSize [default: 5]": 5
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"undergrowth": {
|
||||
"spawn": {
|
||||
"ambient": {
|
||||
"betternether": {
|
||||
"firefly": {
|
||||
"weight [default: 5]": 5,
|
||||
"minGroupSize [default: 1]": 1,
|
||||
"maxGroupSize [default: 3]": 3
|
||||
},
|
||||
"hydrogen_jellyfish": {
|
||||
"weight [default: 5]": 5,
|
||||
"minGroupSize [default: 2]": 2,
|
||||
"maxGroupSize [default: 6]": 6
|
||||
}
|
||||
}
|
||||
},
|
||||
"monster": {
|
||||
"betternether": {
|
||||
"naga": {
|
||||
"weight [default: 8]": 8,
|
||||
"minGroupSize [default: 3]": 3,
|
||||
"maxGroupSize [default: 5]": 5
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"erupting_inferno": {
|
||||
"spawn": {
|
||||
"ambient": {
|
||||
"betternether": {
|
||||
"firefly": {
|
||||
"weight [default: 5]": 5,
|
||||
"minGroupSize [default: 1]": 1,
|
||||
"maxGroupSize [default: 3]": 3
|
||||
},
|
||||
"hydrogen_jellyfish": {
|
||||
"weight [default: 5]": 5,
|
||||
"minGroupSize [default: 2]": 2,
|
||||
"maxGroupSize [default: 6]": 6
|
||||
}
|
||||
}
|
||||
},
|
||||
"monster": {
|
||||
"betternether": {
|
||||
"naga": {
|
||||
"weight [default: 8]": 8,
|
||||
"minGroupSize [default: 3]": 3,
|
||||
"maxGroupSize [default: 5]": 5
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"crystalline_chasm": {
|
||||
"spawn": {
|
||||
"ambient": {
|
||||
"betternether": {
|
||||
"firefly": {
|
||||
"weight [default: 5]": 5,
|
||||
"minGroupSize [default: 1]": 1,
|
||||
"maxGroupSize [default: 3]": 3
|
||||
},
|
||||
"hydrogen_jellyfish": {
|
||||
"weight [default: 5]": 5,
|
||||
"minGroupSize [default: 2]": 2,
|
||||
"maxGroupSize [default: 6]": 6
|
||||
}
|
||||
}
|
||||
},
|
||||
"monster": {
|
||||
"betternether": {
|
||||
"naga": {
|
||||
"weight [default: 8]": 8,
|
||||
"minGroupSize [default: 3]": 3,
|
||||
"maxGroupSize [default: 5]": 5
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"visceral_heap": {
|
||||
"spawn": {
|
||||
"ambient": {
|
||||
"betternether": {
|
||||
"firefly": {
|
||||
"weight [default: 5]": 5,
|
||||
"minGroupSize [default: 1]": 1,
|
||||
"maxGroupSize [default: 3]": 3
|
||||
},
|
||||
"hydrogen_jellyfish": {
|
||||
"weight [default: 5]": 5,
|
||||
"minGroupSize [default: 2]": 2,
|
||||
"maxGroupSize [default: 6]": 6
|
||||
}
|
||||
}
|
||||
},
|
||||
"monster": {
|
||||
"betternether": {
|
||||
"naga": {
|
||||
"weight [default: 8]": 8,
|
||||
"minGroupSize [default: 3]": 3,
|
||||
"maxGroupSize [default: 5]": 5
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,68 @@
|
||||
{
|
||||
"aspen_glade_enabled": true,
|
||||
"auroral_garden_enabled": true,
|
||||
"bayou_enabled": true,
|
||||
"bog_enabled": true,
|
||||
"cold_desert_enabled": true,
|
||||
"coniferous_forest_enabled": true,
|
||||
"crag_enabled": true,
|
||||
"crystalline_chasm_enabled": true,
|
||||
"dead_forest_enabled": true,
|
||||
"dryland_enabled": true,
|
||||
"dune_beach_enabled": true,
|
||||
"erupting_inferno_enabled": true,
|
||||
"field_enabled": true,
|
||||
"fir_clearing_enabled": true,
|
||||
"floodplain_enabled": true,
|
||||
"forested_field_enabled": true,
|
||||
"fungal_jungle_enabled": true,
|
||||
"glowing_grotto_enabled": true,
|
||||
"grassland_enabled": true,
|
||||
"gravel_beach_enabled": true,
|
||||
"highland_enabled": true,
|
||||
"hot_springs_enabled": true,
|
||||
"jacaranda_glade_enabled": true,
|
||||
"jade_cliffs_enabled": true,
|
||||
"lavender_field_enabled": true,
|
||||
"lush_desert_enabled": true,
|
||||
"lush_savanna_enabled": true,
|
||||
"maple_woods_enabled": true,
|
||||
"marsh_enabled": true,
|
||||
"mediterranean_forest_enabled": true,
|
||||
"moor_enabled": true,
|
||||
"muskeg_enabled": true,
|
||||
"mystic_grove_enabled": true,
|
||||
"old_growth_dead_forest_enabled": true,
|
||||
"old_growth_woodland_enabled": true,
|
||||
"ominous_woods_enabled": true,
|
||||
"orchard_enabled": true,
|
||||
"origin_valley_enabled": true,
|
||||
"overgrown_greens_enabled": true,
|
||||
"pasture_enabled": true,
|
||||
"prairie_enabled": true,
|
||||
"pumpkin_patch_enabled": true,
|
||||
"rainforest_enabled": true,
|
||||
"redwood_forest_enabled": true,
|
||||
"rocky_rainforest_enabled": true,
|
||||
"rocky_shrubland_enabled": true,
|
||||
"scrubland_enabled": true,
|
||||
"seasonal_forest_enabled": true,
|
||||
"shrubland_enabled": true,
|
||||
"snowblossom_grove_enabled": true,
|
||||
"snowy_coniferous_forest_enabled": true,
|
||||
"snowy_fir_clearing_enabled": true,
|
||||
"snowy_maple_woods_enabled": true,
|
||||
"spider_nest_enabled": true,
|
||||
"tropics_enabled": true,
|
||||
"tundra_enabled": true,
|
||||
"undergrowth_enabled": true,
|
||||
"visceral_heap_enabled": true,
|
||||
"volcanic_plains_enabled": true,
|
||||
"volcano_enabled": true,
|
||||
"wasteland_enabled": true,
|
||||
"wasteland_steppe_enabled": true,
|
||||
"wetland_enabled": true,
|
||||
"wintry_origin_valley_enabled": true,
|
||||
"withered_abyss_enabled": true,
|
||||
"woodland_enabled": true
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
|
||||
[general]
|
||||
#Add various BOP resources to the Wandering Trader trade pool.
|
||||
wandering_trader_trades = true
|
||||
|
@ -0,0 +1,15 @@
|
||||
|
||||
[nether]
|
||||
#The weighting of bop biome regions in the nether.
|
||||
bop_nether_region_weight = 13
|
||||
#The weighting of rare bop biome regions in the nether.
|
||||
bop_nether_rare_region_weight = 2
|
||||
|
||||
[overworld]
|
||||
#The weighting of primary bop biome regions in the overworld.
|
||||
bop_primary_overworld_region_weight = 10
|
||||
#The weighting of rare bop biome regions in the overworld.
|
||||
bop_overworld_rare_region_weight = 2
|
||||
#The weighting of secondary bop biome regions in the overworld.
|
||||
bop_secondary_overworld_region_weight = 8
|
||||
|
152
1.20.1-FearFactoryTest/minecraft/config/c2me.toml
Normal file
152
1.20.1-FearFactoryTest/minecraft/config/c2me.toml
Normal file
@ -0,0 +1,152 @@
|
||||
version = 3
|
||||
# (Default:
|
||||
# max(
|
||||
# 1,
|
||||
# min(
|
||||
# if( is_windows,
|
||||
# (cpus / 1.6 - 2),
|
||||
# (cpus / 1.2 - 2)
|
||||
# ),
|
||||
# if( is_j9vm,
|
||||
# ( ( mem_gb - (if(is_client, 0.6, 0.2)) ) / 0.5 ),
|
||||
# ( ( mem_gb - (if(is_client, 1.2, 0.6)) ) / 1.2 )
|
||||
# )
|
||||
# ) - if(is_client, 2, 0)
|
||||
# )
|
||||
# )
|
||||
# The expression for the default value of global executor parallelism.
|
||||
# This is used when the parallelism isn't overridden.
|
||||
# Available variables: is_windows, is_j9vm, is_client, cpus, mem_gb
|
||||
#
|
||||
defaultGlobalExecutorParallelismExpression = "default"
|
||||
# (Default: 5) Configures the parallelism of global executor
|
||||
globalExecutorParallelism = "default"
|
||||
|
||||
[generalOptimizations]
|
||||
# (Default: 100000) The task interval of mid-tick chunk tasks in nanoseconds (-1 to disable)
|
||||
# Mid-tick chunk tasks is to execute chunk tasks during server tick loop
|
||||
# to speed up chunk loading and generation
|
||||
# This helps chunks loading and generating under high MSPT but may raise
|
||||
# MSPT when chunks are loading or generating
|
||||
#
|
||||
# It is generally not recommended to adjust this value unless you know
|
||||
# what you are doing
|
||||
#
|
||||
# Incompatible with Dimensional Threading (dimthread)
|
||||
#
|
||||
midTickChunkTasksInterval = "default"
|
||||
# (Default: true) Whether to let async chunk request no longer block server thread
|
||||
# (may cause incompatibility with other mods)
|
||||
optimizeAsyncChunkRequest = "default"
|
||||
|
||||
[generalOptimizations.autoSave]
|
||||
# (Default: ENHANCED) Defines how auto save should be handled
|
||||
# VANILLA: Use vanilla auto-save behavior (auto-save performed every tick during ticking)
|
||||
# ENHANCED: Use C2ME enhanced auto-save (auto-save performed when the server have spare time after ticking)
|
||||
# PERIODIC: Use pre-1.18 vanilla auto-save behavior (auto-save performed every 6000 ticks during ticking)
|
||||
#
|
||||
# Please preserve quotes so this config don't break
|
||||
#
|
||||
mode = "default"
|
||||
# (Default: 20000) Defines the delay in milliseconds between performing auto-save for a chunk
|
||||
# This is only used when mode is set to ENHANCED
|
||||
#
|
||||
delay = "default"
|
||||
|
||||
[fixes]
|
||||
# (Default: true)
|
||||
# Whether to disable the shutdown hook of log4j2 on dedicated servers.
|
||||
# Enabling this also makes the JVM exit when the dedicated server is considered fully shut down.
|
||||
# This option have no effect on client-side.
|
||||
# We has historically been doing this, and this config option allows you to disable this behavior.
|
||||
#
|
||||
disableLoggingShutdownHook = "default"
|
||||
# (Default: true) Enforces safe world random access.
|
||||
# This feature detects unsafe off-thread world random access, helping to find the causes
|
||||
# of mysterious "Accessing LegacyRandomSource from multiple threads" crash.
|
||||
# The default behavior is to fail hard when such bad things happens.
|
||||
# Disabling this option will replace this behavior with a warning.
|
||||
#
|
||||
# It is generally not recommended to disable this settings unless you know what you are doing
|
||||
#
|
||||
#
|
||||
enforceSafeWorldRandomAccess = "default"
|
||||
|
||||
[threadedWorldGen]
|
||||
# (Default: true) Whether to enable this feature
|
||||
enabled = "default"
|
||||
# (Default: true) Whether to allow feature generation (world decorations like trees, ores and etc.) run in parallel
|
||||
# (may cause incompatibility with other mods)
|
||||
allowThreadedFeatures = "default"
|
||||
# (Default: true) Whether to allow reducing lock radius
|
||||
# (may cause incompatibility with other mods)
|
||||
reduceLockRadius = "default"
|
||||
# (Default: true) Whether to enable async and parallel scheduling
|
||||
# This will reduce server thread load
|
||||
# (may cause incompatibility with other mods)
|
||||
#
|
||||
asyncScheduling = "default"
|
||||
|
||||
[ioSystem]
|
||||
# (Default: true) Whether to use the optimized implementation of IO system
|
||||
replaceImpl = "default"
|
||||
# (Default: true) Whether to use async chunk loading & unloading
|
||||
async = "default"
|
||||
# (Default: false) EXPERIMENTAL FEATURE
|
||||
# This replaces the way your chunks are saved.
|
||||
# Please keep regular backups of your world if you are using this feature,
|
||||
# and report any world issues you encounter with this feature to our GitHub.
|
||||
#
|
||||
# Whether to use the fast reduced allocation chunk serializer
|
||||
# (may cause incompatibility with other mods)
|
||||
#
|
||||
# Set to false for the following reasons:
|
||||
# Incompatible with architectury@9.2.14 (*) (defined in c2me)
|
||||
gcFreeChunkSerializer = "default"
|
||||
# (Default: 8192) Soft limit for io worker nbt cache
|
||||
chunkDataCacheSoftLimit = "default"
|
||||
# (Default: 32678) Hard limit for io worker nbt cache
|
||||
chunkDataCacheLimit = "default"
|
||||
# (Default: -1) Defines which chunk compression should be used
|
||||
# -1 for Vanilla default
|
||||
# 1 for GZip (RFC1952) (Vanilla compatible)
|
||||
# 2 for Zlib (RFC1950) (Vanilla default) (Vanilla compatible)
|
||||
# 3 for Uncompressed (Fastest, but higher disk usage) (Vanilla compatible)
|
||||
#
|
||||
# Original chunk data will still readable after modifying this option
|
||||
# as this option only affects newly stored chunks
|
||||
# Invalid values will fall back to vanilla default
|
||||
#
|
||||
chunkStreamVersion = "default"
|
||||
|
||||
[noTickViewDistance]
|
||||
# (Default: true) Whether to enable no-tick view distance
|
||||
enabled = "default"
|
||||
# (Default: 6) No-tick view distance max concurrent chunk loads
|
||||
# Lower this for a better latency and higher this for a faster loading
|
||||
maxConcurrentChunkLoads = "default"
|
||||
# (Default: true) Whether to use compatibility mode to send chunks
|
||||
# This may fix some mod compatibility issues
|
||||
compatibilityMode = "default"
|
||||
# (Default: false) Whether to ensure correct chunks within normal render distance
|
||||
# This will send chunks twice increasing network load
|
||||
ensureChunkCorrectness = "default"
|
||||
|
||||
[clientSideConfig]
|
||||
|
||||
[clientSideConfig.modifyMaxVDConfig]
|
||||
# (Default: true) Whether to modify maximum view distance
|
||||
enabled = "default"
|
||||
# (Default: 60) Max render distance allowed in game options
|
||||
maxViewDistance = "default"
|
||||
|
||||
[vanillaWorldGenOptimizations]
|
||||
# (Default: true) Whether to enable aquifer optimizations to accelerate overworld worldgen
|
||||
# (may cause incompatibility with other mods)
|
||||
optimizeAquifer = "default"
|
||||
# (Default: true) Whether to enable End Biome Cache to accelerate The End worldgen
|
||||
# This is no longer included in lithium-fabric
|
||||
# (may cause incompatibility with other mods)
|
||||
#
|
||||
useEndBiomeCache = "default"
|
||||
|
@ -0,0 +1,7 @@
|
||||
{
|
||||
/* This has 2 acceptable values: [CHAT, WIDGET]
|
||||
* CHAT - Will post a message within 5 minutes to a user's chat once they've been in game for 5 minutes. Will no longer show after the user presses dismiss.
|
||||
* WIDGET - Displays a widget on screen with the announcement on all screens until the widget is dismissed.
|
||||
*/
|
||||
"announcement_delivery": "WIDGET"
|
||||
}
|
@ -116,3 +116,4 @@ Weather2
|
||||
Desert Behemoths: Sandworms!
|
||||
I HATE FLESH : REBORN
|
||||
Spore
|
||||
Biomes O' Plenty
|
||||
|
BIN
1.20.1-FearFactoryTest/minecraft/mods/ArPhEx-4.5.1b-forge-1.20.1.jar
(Stored with Git LFS)
BIN
1.20.1-FearFactoryTest/minecraft/mods/ArPhEx-4.5.1b-forge-1.20.1.jar
(Stored with Git LFS)
Binary file not shown.
BIN
1.20.1-FearFactoryTest/minecraft/mods/ArPhEx-4.5.2d-forge-1.20.1.jar
(Stored with Git LFS)
Normal file
BIN
1.20.1-FearFactoryTest/minecraft/mods/ArPhEx-4.5.2d-forge-1.20.1.jar
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
1.20.1-FearFactoryTest/minecraft/mods/BiomesOPlenty-forge-1.20.1-19.0.0.96.jar
(Stored with Git LFS)
Normal file
BIN
1.20.1-FearFactoryTest/minecraft/mods/BiomesOPlenty-forge-1.20.1-19.0.0.96.jar
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
1.20.1-FearFactoryTest/minecraft/mods/Terralith_1.20.x_v2.5.4.jar
(Stored with Git LFS)
Normal file
BIN
1.20.1-FearFactoryTest/minecraft/mods/Terralith_1.20.x_v2.5.4.jar
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
1.20.1-FearFactoryTest/minecraft/mods/c2me-fabric-mc1.20.1-0.2.0+alpha.11.16.jar
(Stored with Git LFS)
Normal file
BIN
1.20.1-FearFactoryTest/minecraft/mods/c2me-fabric-mc1.20.1-0.2.0+alpha.11.16.jar
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
1.20.1-FearFactoryTest/minecraft/mods/fasterrandom-5.1.0.jar
(Stored with Git LFS)
Normal file
BIN
1.20.1-FearFactoryTest/minecraft/mods/fasterrandom-5.1.0.jar
(Stored with Git LFS)
Normal file
Binary file not shown.
Reference in New Issue
Block a user