You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: overrides/config/stellar_core.cfg
+78-70Lines changed: 78 additions & 70 deletions
Original file line number
Diff line number
Diff line change
@@ -45,11 +45,11 @@ general {
45
45
46
46
advancedrocketry {
47
47
# Fix the NPE problem that occasionally occurs with BiomeChanger.
48
-
B:ItemBiomeChanger=false
48
+
B:ItemBiomeChanger=true
49
49
50
50
# When the planetDefs.xml file is corrupted, make it regenerate the file instead of letting it damn near crash.
51
51
# This is usually only a problem if the game process is unexpectedly exited, and the file is usually unrecoverable without a backup.
52
-
B:PreventDimensionManagerCrash=false
52
+
B:PreventDimensionManagerCrash=true
53
53
}
54
54
55
55
ancientspellcraft {
@@ -102,6 +102,11 @@ general {
102
102
B:CraftingInjectorFixes=true
103
103
}
104
104
105
+
ebwizardry {
106
+
# Fix an issue where Imbuement Altar could copy items using a special interact method.
107
+
B:BlockImbuementAltarDupeFixes=true
108
+
}
109
+
105
110
enderioconduits {
106
111
# A somewhat disruptive feature fix that modifies some of the way item conduits work,
107
112
# allowing some special cases to store extracted items inside the conduit,
@@ -110,6 +115,16 @@ general {
110
115
B:ItemConduitItemStackCache=false
111
116
}
112
117
118
+
enderutilities {
119
+
# Fix an issue where HandyBag sometimes picking up items would cause them to be duplicated,
120
+
# with the side effect that the player's item bar would no longer be populated when picking up matching items.
121
+
B:ItemHandyBagDupeFixes=true
122
+
123
+
# Fix an issue where Nullifier sometimes picking up items would cause them to be duplicated,
124
+
# with the side effect that the player's item bar would no longer be populated when picking up matching items.
125
+
B:ItemNullifierDupeFixes=true
126
+
}
127
+
113
128
extrabotany {
114
129
# Prevents the Mana Liquefaction Device from storing far more liquid magic than it is set to store.
115
130
B:TileManaLiquefactionFixes=true
@@ -250,21 +265,6 @@ general {
250
265
B:ContainerSatchelFilterFixes=true
251
266
}
252
267
253
-
enderutilities {
254
-
# Fix an issue where HandyBag sometimes picking up items would cause them to be duplicated,
255
-
# with the side effect that the player's item bar would no longer be populated when picking up matching items.
256
-
B:ItemHandyBagDupeFixes=true
257
-
258
-
# Fix an issue where Nullifier sometimes picking up items would cause them to be duplicated,
259
-
# with the side effect that the player's item bar would no longer be populated when picking up matching items.
260
-
B:ItemNullifierDupeFixes=true
261
-
}
262
-
263
-
ebwizardry {
264
-
# Fix an issue where Imbuement Altar could copy items using a special interact method.
265
-
B:BlockImbuementAltarDupeFixes=true
266
-
}
267
-
268
268
}
269
269
270
270
performance {
@@ -327,6 +327,7 @@ general {
327
327
328
328
# (Client/Server Performance) Cache constants -32768 - 32767 of NBTTagByte, NBTTagInt, NBTTagLong, NBTTagFloat, NBTTagDouble using constant pool.
329
329
# Like IntegerCache in the JVM, improves memory usage and reduces object creation overhead.
330
+
# Note: Some mods may not comply with the specification causing NBTBase to be loaded prematurely, so there may be a higher probability of problems with this feature.
330
331
# Incompatible with old version of Quark (< r1.6-189), which modifies the bytecode of the NBTTag class too early.
331
332
B:NBTPrimitiveConstantsPool=true
332
333
@@ -366,7 +367,7 @@ general {
366
367
367
368
# (Client Performance) Caches the state of existence of each resource file in the ResourcePack,
368
369
# improve the speed of model loading, if you encounter the game can not be loaded or display anomaly, turn off this option.
369
-
B:ResourceExistStateCache=false
370
+
B:ResourceExistStateCache=true
370
371
371
372
# (Client/Server Performance) Deduplicate internal strings of ResourceLocation to reduce memory usage.
372
373
# When installed with CensoredASM, turn off the `resourceLocationCanonicalization` feature of CensoredASM.
@@ -410,6 +411,9 @@ general {
410
411
# helping to improve the computer freezing problem at game startup, but potentially causing the game to take longer to load.
411
412
B:ASMDataTableCPUUsageImprovements=false
412
413
414
+
# (Client/Server Performance) Improved performance of ASMModParser in parsing bytecode, improved startup speed (~1 ~ 5 seconds).
415
+
B:ASMModParserImprovements=true
416
+
413
417
# (Client/Server Performance) ChunkManager optimisation, improves performance in more player environments.
0 commit comments