Skip to content

Commit af1bcb7

Browse files
committed
Fix
1 parent b36fbf4 commit af1bcb7

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

overrides/config/loliasm.cfg

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
bakedquad {
44
# Classes where BakedQuad::new calls need to be redirected. As of 3.2, this should be done automatically, while the changes will show in the next launch - <default: [net.minecraft.client.renderer.block.model.FaceBakery]>
55
S:classesThatCallBakedQuadCtor <
6+
appeng.client.render.model.AutoRotatingModel
7+
appeng.client.render.model.ColorApplicatorBakedModel
8+
appeng.client.render.cablebus.QuadRotator
9+
codechicken.lib.render.buffer.BakingVertexBuffer
610
net.minecraft.client.renderer.block.model.FaceBakery
711
>
812

@@ -29,7 +33,7 @@ canonicalization {
2933
B:filePermissionsCacheCanonicalization=true
3034

3135
# Deduplicate LockCode when reading from NBT - <default: true>
32-
B:lockCodeCanonicalization=true
36+
B:lockCodeCanonicalization=false
3337

3438
# Deduplicate Model Conditions. Enable this if you do not have Foamfix installed - <default: false>
3539
B:modelConditionCanonicalization=false
@@ -38,7 +42,7 @@ canonicalization {
3842
B:nbtBackingMapStringCanonicalization=false
3943

4044
# Deduplicate Strings in NBTTagString - <default: true>
41-
B:nbtTagStringBackingStringCanonicalization=true
45+
B:nbtTagStringBackingStringCanonicalization=false
4246

4347
# Deduplicate package strings when Forge gathers them when mod candidates are loaded - <default: true>
4448
B:packageStringCanonicalization=true
@@ -83,10 +87,10 @@ datastructures {
8387
B:optimizeRegistries=true
8488

8589
# If JEI/HEI is installed, replace vanilla search trees with JEI's, decreases memory usage, loading time and adds more features to normal creative menu searching - <default: true>
86-
B:replaceSearchTreeWithJEISearching=true
90+
B:replaceSearchTreeWithJEISearching=false
8791

8892
# EXPERIMENTAL: Strips ItemStack of some of its fields as it stores some near-useless references - <default: true>
89-
B:stripNearUselessItemStackFields=true
93+
B:stripNearUselessItemStackFields=false
9094
}
9195

9296

@@ -128,10 +132,10 @@ furnace {
128132

129133
launchwrapper {
130134
# Invalidate and clean cache entries when the game finishes loading (onto the main screen). Loading into the first world may take longer. This option wouldn't do anything if 'cleanupLaunchClassLoaderLate' is 'true' - <default: false>
131-
B:cleanCachesOnGameLoad=false
135+
B:cleanCachesOnGameLoad=true
132136

133137
# Cleanup some redundant data structures in LaunchClassLoader at the earliest point possible (when LoliASM is loaded). Helpful for those that don't have enough RAM to load into the game. This can induce slowdowns while loading the game in exchange for more available RAM - <default: false>
134-
B:cleanupLaunchClassLoaderEarly=false
138+
B:cleanupLaunchClassLoaderEarly=true
135139

136140
# Cleanup some redundant data structures in LaunchClassLoader at the latest point possible (when the game reaches the Main Screen). This is for those that have enough RAM to load the game and do not want any slowdowns while loading. Note: if 'cleanupLaunchClassLoaderEarly' is 'true', this option will be ignored - <default: true>
137141
B:cleanupLaunchClassLoaderLate=true
@@ -235,6 +239,9 @@ modfixes {
235239
# EXPERIMENTAL: When ChickenASM (Library of CodeChickenLib and co.) is installed, ClassHierarchyManager can cache a lot of Strings and seem to be unused in any transformation purposes. This clears ClassHierarchyManager of those redundant strings. This option will be ignored when ChickenASM isn't installed - <default: true>
236240
B:cleanupChickenASMClassHierarchyManager=true
237241

242+
# When various mods are installed and their blocks have broken particles, this tweak disables it. - <default: true>
243+
B:disableBrokenParticles=true
244+
238245
# When Extra Utilities 2 is installed, disable the crafter's rendering of the item being crafted, this can reduce lag, ignores fixXU2CrafterCrash config option - <default: false>
239246
B:disableXU2CrafterRendering=false
240247

0 commit comments

Comments
 (0)