-
Notifications
You must be signed in to change notification settings - Fork 8
/
ExampleConfiguration.cfg
747 lines (575 loc) · 34.6 KB
/
ExampleConfiguration.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
# Configuration file
general {
performance {
vanilla {
# (Client Performance | Sodium Feature) Making all immediate chunk updates always deferred helps improve intermittent
# low FPS conditions, but potentially leads to rendering delays.
B:AlwaysDeferChunkUpdates=true
# (Client/Server Performance) Asynchronous loading of ItemStack's Capability to improve performance.
# Conflict with CensoredASM's `delayItemStackCapabilityInit` option.
B:AsyncItemStackCapabilityInit=true
# (Client Performance | Experimental) Deduplicate vertexData array to optimise memory usage.
# Works in most cases, but may cause rendering issues with models in some mods.
B:BakedQuadVertexDataCanonicalization=true
# (Client Performance) Deduplicate BlockFaceUV `uvs` array to optimise memory usage.
B:BlockFaceUVsCanonicalization=true
# (Client Performance) Improved BlockPart data structure, improve memory usage with a more efficient map.
B:BlockPartDataStructureImprovements=true
# (Server Performance) Improving BlockStateContainer$BlockStateImplementation#hashCode Performance with hashCode cache.
B:BlockStateImplementationHashCodeCache=true
# (Server Performance) Modified the data structure of capturedBlockSnapshots to a LinkedList to help improve insertion and deletion performance.
B:CapturedBlockSnapshotsImprovements=true
# (Client/Server Performance) Use long instead of BlockPos to store TileEntities, optimising memory usage and potentially improving performance.
# Conflicts with UniversalTweaks - 'Tile Entity Map' options and StellarCore maybe overrides them.
B:ChunkTileEntityMapImprovements=true
# (Server Performance) Improving the performance of ClassInheritanceMultiMap (up to ~40%).
B:ClassInheritanceMultiMapImprovements=true
# (Server Performance) Improving EntityTracker Performance with Improved Data Structures.
B:EntityTrackerImprovements=true
# (Client Performance | Experimental) A feature from Patcher mod, using protocol CC-BY-NC-SA 4.0, if there are any copyright issues, please contact me to remove it.
# Dramatically improves performance by limiting the HUD to a specified FPS, may not be compatible with older devices.
# May perform strangely with some HUD Mods.
B:HudCaching=true
# Select a restricted HUD FPS that is only valid when HudCaching is enabled.
# Min: 5
# Max: 240
I:HudCachingFPSLimit=20
# (Client Performance) Modify the data structure of ModelBlock's textures map to improve performance and reduce memory usage.
# This feature requires CensoredASM mod.
# Known to be incompatible with DynamicTrees.
B:ModelBlockStringCanonicalization=true
# (Client/Server Performance) Improving NBTTagCompound Performance with Improved Data Structures.
# Conflict with CensoredASM's `optimizeNBTTagCompoundBackingMap` and `nbtBackingMapStringCanonicalization` option.
B:NBTTagCompoundMapImprovements=true
# (Client Performance) As the configuration name says, use at your own risk.
B:NoGLError=true
# (Client/Server Performance | Experimental) Replaces the internal default ArrayList of NonNullList with an ObjectArrayList (may not work).
B:NonNullListImprovements=true
# (Client Performance | Experimental) A feature that helps speed up game loading by modifying the model loader's code to enable parallel loading capabilities (5s ~ 40s faster).
# Incompatible with some mod's models because they use their own model loader, if you encounter a missing model, please report it to the StellarCore author for manual compatibility.
# Compatible model loader: CTM,LibNine,TConstruct
# Contrary to VintageFix's DynamicResource functionality and therefore incompatible, you can only choose one.
B:ParallelModelLoader=true
# Defining which ModelLoader cannot be safely asynchronized to allow StellarCore to load models
# using a synchronous approach, usually requires no modification to it.
S:ParallelModelLoaderBlackList <
slimeknights.tconstruct.library.client.model.ModifierModelLoader
>
# (Client/Server Performance) Use parallelStream to handle randomTick operations on world blocks to improve performance in more player environments,
# possibly affecting the random logic of the original game.
B:ParallelRandomBlockTicker=true
# (Client Performance | Experimental) An feature that uses parallel loading of texture files, improved game loading speed.
# If you get a crash when installing with VintageFix, turn this feature off, or turn off the mixins.texturemap option for VintageFix.
B:ParallelTextureLoad=true
# (Client Performance) Improving PropertyEnum#hashCode Performance with hashCode cache.
B:PropertyEnumHashCodeCache=true
# (Client Performance) Caches the state of existence of each resource file in the ResourcePack,
# improve the speed of model loading, if you encounter the game can not be loaded or display anomaly, turn off this option.
B:ResourceExistStateCache=true
# (Client Performance) Deduplicate internal strings of ResourceLocation to reduce memory usage.
# When installed with CensoredASM, turn off the `resourceLocationCanonicalization` feature of CensoredASM.
# StellarCore already has backend integration for it.
B:ResourceLocationCanonicalization=true
# (Client Performance | Experimental) BakedQuad deduplication of SimpleBakedModel to optimise memory usage.
# Works in most cases, but may cause rendering issues with models in some mods.
B:SimpleBakedModelCanonicalization=true
# (Client Performance) Improve the Map data structures of StateMapperBase to make them faster (~30%).
B:StateMapperBaseImprovements=true
# (Client Performance) Enabling Stitcher caching improves the game loading speed.
# The main principle is to cache the Stitcher's splicing results and save them to the hard drive for next time reading, so
# you need to pre-launch the game once before you can see the effect.
# Not compatible with VintageFix's DynamicResource, but should work well with VintageFix's TurboStitcher.
B:StitcherCache=true
# (Client Performance) Clearing the cache after loading a model, significantly reduce memory usage.
# But it may cause some mod's models to be messed up after reloading ResourcePacks,
# Turning this option off will use more memory.
# If you installed FoamFix, FoamFix does the same thing but StellarCore is faster, you may need to turn off the `wipeModelCache` option in foamfix.cfg.
B:WipeModelCache=true
# (Client/Server Performance) Improved `World#isValid` / `World#isOutsideBuildHeight` judgement performance, minor performance improvements.
B:WorldBlockPosJudgement=true
# (Server Performance) Improving WorldServer#getPendingBlockUpdates Performance with Improved Data Structures.
B:WorldServerGetPendingBlockUpdatesImprovements=true
}
avaritia {
# (Client / Server Performance) Speed up recipe loading with parallel loading.
B:AvaritiaRecipeManagerImprovements=true
# (Server Performance) Removing some unnecessary Server to Client synchronization helps ease network bandwidth usage.
B:TileBaseImprovements=true
}
botania {
# (Server Performance) A feature with some side effects to make sparks use less performance through dynamic Tick acceleration.
B:SparkEntityImprovements=true
# What is the maximum working interval of the sparks? They will eventually be accelerated to 1 tick.
# Only works if SparkEntityImprovements is enabled.
# Min: 2
# Max: 60
I:SparkMaxWorkDelay=10
}
chisel {
# (Server Performance) A feature with some side effects that improves the performance of Auto Chisel's recipe search
# and makes the interval between searches for recipes increase.
B:AutoChiselImprovements=true
# What is the maximum recipe search interval of the Auto Chisels? They will eventually be accelerated to 20 tick.
# Only works if AutoChiselImprovements is enabled.
# Min: 20
# Max: 100
I:AutoChiselMaxWorkDelay=100
}
endercore {
# (Server Performance) Improve the speed of matching materials such as items using caching and special data structures
# to improve the performance of EnderIO Machines overall, with a slight increase in memory usage.
B:OreThingImprovements=true
# (Server Performance) Improve the speed of matching materials such as items using caching and special data structures
# to improve the performance of EnderIO Machines overall, with a slight increase in memory usage.
B:ThingsImprovements=true
}
enderio {
# (Server Performance) Improve the performance of item determination in FarmerStation using caching (mainly related to the canPlant() method).
B:FarmerImprovements=true
# (Server Performance) Removing some unnecessary parts to improve performance, may affect the use of the Profiler.
B:ItemToolsImprovements=true
# (Server Performance) Improve recipe search speed with caching.
B:RecipeImprovements=true
# (Server Performance) Remove some unnecessary judgments to improve performance (may have side effects).
B:TileEntityBaseImprovements=true
}
industrialcraft2 {
# (Server Performance | Experimental) Rewriting the ic2 energy network computation logic to improve performance using multithreading.
B:EnergyCalculatorLegImprovements=true
# (Server Performance) Improved some data structures, slight performance improvements.
B:EnergyNetLocalImprovements=true
# (Server Performance) Improve EnergyNetLocal#getIoTile and EnergyNetLocal#getSubTile fetching speed to optimise performance to some extent.
B:GetIoAndSubTileEnergyNetLocalImprovements=true
# (Server Performance) Improved some data structures, slight performance improvements.
B:GridDataImprovements=true
# (Server Performance) Improved some data structures, slight performance improvements.
B:GridImprovements=true
# (Server Performance) Allows you to adjust the working speed of the Ejector / Pulling Module.
B:ItemUpgradeModuleImprovements=false
# Work speed of Ejector / Pulling Module.
# Only works if ItemUpgradeModuleImprovements is enabled.
I:ItemUpgradeModuleWorkDelay=5
}
ingameinfoxml {
# Select a restricted HUD FPS that is only valid when HUDFramebuffer is enabled.
# Min: 5
# Max: 60
I:HUDFPS=10
# (Client Performance) Limit the rendering FPS of InGameInfoXML to significantly improve performance (similar to HUDCaching),
# may not be compatible with older devices.
B:HUDFramebuffer=true
}
mekanism {
# (Server Performance) Performance improvements on data structures.
# MEKCEu already includes this feature, so installing MEKCEu will automatically disable it.
B:EnergyNetworkImprovements=true
# (Server Performance) Performance improvements on data structures.
# MEKCEu already includes this feature, so installing MEKCEu will automatically disable it.
B:FrequencyImprovements=true
# (Server Performance) Performance improvements on data structures.
# MEKCEu already includes this feature, so installing MEKCEu will automatically disable it.
B:PipeUtilsImprovements=true
}
biomesoplenty {
# (Client/Server Performance) Block them from doing network operations in the main thread.
B:TrailManagerAsync=true
}
extrabotany {
# (Client/Server Performance) Block them from doing network operations in the main thread.
B:PersistentVariableHandlerAsync=true
}
bloodmagic {
# (Server Performance) Removing some unnecessary Server to Client synchronization helps ease network bandwidth usage.
B:BloodAltarImprovements=true
}
cucumber {
# When a block is updated, how many players within range can receive its update?
# Only works if VanillaPacketDispatcherImprovements is enabled, and only works on mods that use the Cucumber lib.
D:TileEntityUpdateRange=16.0
# (Client/Server Performance) Block them from doing network operations in the main thread.
B:VanillaPacketDispatcherImprovements=false
}
customloadingscreen {
# (Recommend) (Client Performance) We'll never know why we have to wait an extra (20*5)ms for each module loaded.
B:ModLoadingListenerImprovements=true
# (Client Performance) Clean up their mapping after the game has finished loading to improve memory usage.
B:TextureCleanup=true
}
enderioconduits {
# (Server Performance) Removing some unnecessary parts to improve performance, may affect the use of the Profiler.
B:AbstractConduitImprovements=true
# (Server Performance) Improved some data structures, slight performance improvements.
B:EnderLiquidConduitNetworkTankMap=true
# (Server Performance | Experimental) Rewriting the eio conduit energy network computation logic to improve performance using multithreading.
B:NetworkPowerManagerImprovements=true
# (Server Performance) Improved the hashCode() method of NetworkTankKey, which can improve the performance of the EnderIO Conduit Network.
B:NetworkTankKeyHashCodeCache=true
# (Server Performance) Removing some unnecessary parts to improve performance, may affect the use of the Profiler.
B:TileConduitBundleImprovements=true
}
forge {
# (Client/Server Performance) ASMDataTable Annotation Map builds use half of the CPU instead of all of it,
# helping to improve the computer freezing problem at game startup, but potentially causing the game to take longer to load.
B:ASMDataTableCPUUsageImprovements=true
# (Client Performance | Experimental) Deduplicate unpackedData array to optimise memory usage, with significant optimisation for some mods.
# Works in most cases, but may cause rendering issues with models in some mods.
B:UnpackedBakedQuadDataCanonicalization=true
# Adjust the optimisation level of the `UnpackedBakedQuadDataCanonicalization` option, the higher the level
# the better the results but the higher the probability of encountering problems, normally a setting of 2 is sufficient...
# Higher levels consume more CPU performance.
# This option can be adjusted while the game is running, but restarting the game is highly recommended.
# Min: 1
# Max: 3
I:UnpackedBakedQuadDataCanonicalizationLevel=2
# (Client Performance | Experimental) Deduplicate vertexData array to optimise memory usage.
# Works in most cases, but may cause rendering issues with models in some mods.
B:UnpackedBakedQuadVertexDataCanonicalization=true
}
ftblib {
# (Server Performance) Improved some of the judgments so that it doesn't consume a lot of time sending network packets.
B:InvUtilsForceUpdateImprovements=true
}
ftbquests {
# (Server Performance) Improved performance of item quest checking (but may result in longer intervals between quest checks).
B:QuestInventoryListenerImprovements=true
}
tconstruct {
# (Server Performance) Improvements in the search performance of Basin Casing recipes.
B:BasinCastingRecipeSearchImprovements=true
# (Server Performance) Improvements in the search performance of Melting recipes.
B:MeltingRecipeSearchImprovements=true
# (Server Performance) Improvements in the search performance of Table Casing recipes.
B:TableCastingRecipeSearchImprovements=true
# (Server Performance) Improvements in the search performance of Smeltery Alloy Casing recipes.
B:TileSmelteryAlloyRecipeSearchImprovements=true
# (Server Performance) Smeltery What is the maximum number of recipes that can be completed per tick?
# Min: 1
# Max: 100
I:TileSmelteryMaxAlloyRecipePerTick=5
}
ctm {
# (Client Performance | Experimental) A feature that loads CTM's Metadata data faster (~60%) using parallelStream,
# usually with few conflict issues. If enabling this feature causes a problem, please report it immediately.
B:TextureMetadataHandlerImprovements=true
}
ebwizardry {
# (Server Performance) Improved event listening performance for DispenserCastingData.
# Note: We are currently experiencing strange issues on some devices during testing, please report any unknown crashes with this feature enabled immediately.
B:DispenserCastingDataImprovements=true
}
touhoulittlemaid {
# (Client Performance) Enable model data Canonicalization to improve TLM model memory usage.
B:modelDataCanonicalization=true
# (Client Performance) Enable TexturedQuadFloat data Canonicalization to improve TLM model memory usage.
B:texturedQuadFloatCanonicalization=true
}
enderutilities {
# (Server Performance) Improvements to the way UtilItemModular loads items to slightly improve performance.
B:UtilItemModularImprovements=true
}
immersiveengineering {
# (Server Performance) Blocking the IE Mechanical Block from triggering a full block update when transferring energy may improve performance.
# But if strange block states appear try turning off this option.
B:EnergyTransferNoUpdate=true
}
libnine {
# (Client Performance) Cache the result of L9Models#isOfType to improve game loading speed.
# This feature requires Vanilla#ResourceExistStateCache option.
B:L9ModelsIsOfTypeCache=true
}
fluxnetworks {
# (Server Performance) Removing the secondary judgement of energy transfer may help improve performance.
B:ConnectionTransferImprovements=true
# (Server Performance | Experimental) Rewriting the flux network calculation logic to improve performance using multithreading.
B:ParallelNetworkCalculation=false
}
astralsorcery {
# (Server Performance) Add optional updates to the block to improve network bandwidth usage.
B:TileNetworkSkyboundImprovements=true
}
}
features {
# The title.
S:CustomGameTitle=Minecraft 1.12.2
# (Client) Allows you to modify the title of the game, highest priority,
# supports earlier versions such as CleanroomLoader 3029 (May do the same thing with other mods).
B:EnableCustomGameTitle=false
# Does the CustomGameTitle use Hitokoto API to get random messages? (Chinese Only)
B:TitleUseHitokotoAPI=true
betterchat {
# (Client) Message compat (probably does the same thing as UniversalTweaks, but the difference is that this is a special compatibility with the BetterChat mod).
B:EnableMessageCompat=false
}
botania {
# As the name suggests, use at your own risk.
B:DisableCosmeticRecipe=false
}
legendarytooltips {
# (Client) As the name suggests, enable it only when necessary.
B:DisableTitleWrap=false
}
mekanism {
# Allows Mekanism's machines to transmit more than 2147483647 units of energy through FluxNetworks.
# MEKCEu already includes this feature, so installing MEKCEu will automatically disable it.
B:FluxNetworksSupport=true
# Allows TheOneProbe to show that Mekanism's machines exceed 2147483647 units of energy.
# MEKCEu already includes this feature, so installing MEKCEu will automatically disable it.
B:TOPSupport=true
}
nuclearcraftoverhauled {
# Completely disable NuclearCraft: Overhauled's radiation system if you really don't want to see them in every item's NBT, haha.
B:DisableRadiationCapability=false
}
techguns {
# Are bullets treated as projectiles (affecting damage determination)?
B:BulletIsProjectile=true
# Safe mode is used by default for every player.
B:ForceSecurityMode=true
}
moreelectrictools {
# Disable the Efficient enchantment, if you think this enchantment will appear on any item it's just too bad.
B:RemoveEfficientEnergyCostEnchantment=false
}
fontscale {
# (Client) Allows you to modify the specific scaling of small fonts in the AE2 GUI.
# Min: 0.25
# Max: 1.0
D:AppliedEnergetics2=0.5
# (Client) Allows you to modify the specific scaling of small fonts in the EnderUtilities GUI.
# Min: 0.25
# Max: 1.0
D:EnderUtilities=0.5
}
astralsorcery {
# Disables AstralSorcery's ChainMining perk, make that doesn't work.
B:DisableChainMining=false
}
rgbchat {
# (Client) Complete rewrite of RGBChat's font renderer to optimize performance and fix crashes.
B:TrueRGBSimpleRendererImprovements=true
}
vanilla {
# (Server) Allows CriterionProgress to be serialized in multiple threads.
B:AsyncAdvancementSerialize=true
# (Client Only) Listening to clients loading/unloading new worlds, disabling this option will cause some features on memory leak fixing to fail.
B:HandleClientWorldLoad=true
# An extra feature that stops the model loader from printing errors, neat log, no?
# May have implications for Debug, cannot prevent errors in the output of custom loaders. only available if ParallelModelLoader is enabled.
B:ShutUpModelLoader=false
}
ic2 {
# A highly intrusive feature that makes the IC2 and most of its Addon mod's power items no longer use the endurance value to
# display power, but instead use a special display, a feature that disables the endurance value and helps automate the crafting.
B:ElectricItemNonDurability=true
}
enderioconduits {
# If you're really tired of all this useless logging, set it to true (filter only the no side effects section).
B:PrevEnderLiquidConduitNetworkLogSpam=true
}
foamfix {
B:PrevDeduplicatorLogSpam=true
}
lazyae2 {
# The Level Maintainer request synthesis will always be made to the set value, not just to the critical value.
B:LevelMaintainerRequestCountImprovements=false
}
ebwizardry {
# Prevents the WizardSpell loot from logging to the server console when it's casted.
B:PreventWizardSpellLogSpam=false
}
fluxnetworks {
# (Server) Make FluxNetworks to generate a random int uid for each network, instead of using the self-incrementing ID.
B:RandomNetworkUniqueID=false
}
}
bugfixes {
container {
# A generic feature that when a player's open TileEntity GUI is uninstalled,
# it also forces the player's open GUI to be closed.
B:ContainerUnloadTileEntityFixes=true
}
armourersworkshop {
# Cleanroom only, used to fix an issue that caused the game to crash when unloading skin texture files.
B:SkinTextureCrashFixes=true
}
astralsorcery {
# This option is used to fix some item duplication issues on Astral Tome's constellation paper collection page.
B:ContainerJournalFixes=true
# This option is used to fix occasional crashes related to PlayerAttributeMap.
B:PlayerAttributeMapCrashFixes=true
}
cofhcore {
# This option is used to fix some item duplication issues with any containers related to TE5.
B:ContainerInventoryItemFixes=true
# This option is used to fix an issue that would accidentally cause non-stackable items to
# exceed their maximum number of stacks.
B:TileInventoryFixes=true
}
draconicevolution {
# This option is used to fix some item duplication issues with CraftingInjector.
B:CraftingInjectorFixes=true
}
enderioconduits {
# A somewhat disruptive feature fix that modifies some of the way item conduits work,
# allowing some special cases to store extracted items inside the conduit,
# which will help fix some item duplication issues,
# but may introduce a slight performance overhead and some unexpected filter issues.
B:ItemConduitItemStackCache=true
}
fluxnetworks {
# Possible fix for duplicate users or even crashes on player networks in some cases.
B:SynchronizeFixes=true
# Fixes an issue where TheOneProbe on a dedicated server shows localized text anomalies.
B:TheOneProbeIntegration=true
}
industrialcraft2 {
# Fixed an issue where some item repair recipes would duplication items.
B:GradualRecipeFixes=true
# Fixed an issue where the orientation determined by Ejector / Pulling Upgrade was the opposite of what it actually was.
B:StackUtilInvFacingFixes=true
}
ingameinfoxml {
# Fix the issue where a paragraph would pop up to report an error in a server environment, that's all.
B:PlayerHandlerFixes=true
}
immersiveengineering {
# (Client Only) Clear the model cache when the player switches worlds to avoid memory leaks.
# Minor performance impact. Mainly a problem when installing with other mods.
B:AutoCleanRenderCache=true
# Immediately exit the thread when `Immersive Engineering Contributors Thread` encounters an error while reading JSON,
# instead of always printing the error.
B:IEContributorsThreadExceptionFixes=true
# Fixes an issue that would cause fluids to duplicate in some special cases, although they were a bit tricky to reproduce.
B:JerryCanFixes=true
# Fixes an issue that would cause items to duplicate in certain special cases, although they were a bit tricky to reproduce.
B:MultiblockStructureContainerFixes=true
# Fixes an issue that caused ArcFurnace's item bar items to stack
# more than their items themselves under certain special circumstances, helping to fix item duplication.
B:TileEntityArcFurnaceInventoryFixes=true
# Makes Excavator not drop twice drops when digging blocks (possible side effect).
B:TileEntityExcavatorDigBlockFixes=true
}
moreelectrictools {
# Items such as Electric First Aid Life Support do not continue to work if the player has died.
B:LifeSupportsFixes=true
}
mrcrayfishfurniture {
# Problem preventing certain container items from duplicate.
B:BlockFurnitureTileFixes=true
# Stops the game from freezing in certain special cases, mainly occurring on photo frames and other similar blocks.
B:ImageCacheCrashFixes=true
# Make blocks be rotated without losing their internal attributes and items (possibly not all blocks).
B:RotatableFurniture=true
# Stopping washing machines from repairing non-repairable items.
B:WashingMachineDamageFixes=true
}
scalingguis {
# Fixes an issue that caused a crash when deleting invalid GUI configurations.
B:JsonHelperCrashFixes=true
}
sync {
# Make players get off their mounts when they die.
B:RidingFixes=true
# A special fix that keeps Sync from triggering some weird item duplication issues when installed with Techguns.
B:TechgunsDuplicationFixes=true
}
techguns {
# Fix for recipes not working properly for certain items (Techguns only).
B:InvalidRecipeFixes=true
# Fixes an issue that would cause crashes in server environments.
B:ServerSideEntityCrashFixes=true
# Fixes an issue that would cause crashes in server environments.
B:TGPermissionsCrashFixes=true
}
theoneprobe {
# Prevents TheOneProbe from rendering the entity/player in such a way that their head is locked to a fixed pitch.
B:PlayerEntityRenderFixes=true
}
thermaldynamics {
# Fix a fluid duplication issue where they would only appear on Super-Laminar FluidDuct.
B:FluidDuplicateFixes=true
}
thermalexpansion {
# The problem with stopping a backpack from replicating is that this probably does the same thing as UniversalTweaks.
B:ContainerSatchelFilterFixes=true
}
critical {
# Usually just set it to true, this option fixed a serious network packet problem.
B:GuGuUtilsSetContainerPacket=true
}
extrabotany {
# Prevents the Mana Liquefaction Device from storing far more liquid magic than it is set to store.
B:TileManaLiquefactionFixes=true
}
vanilla {
# If the NBT size is larger than the maximum size, it will display a warning message.
# It will only take effect if LongNBTKiller is enabled.
B:DisplayLargeNBTWarning=true
# Unlocks the size limit of NBT and removes the length limit of NBTTagCompound and NBTTagList,
# usually many mods will have this feature, you just need to enable one of these modules.
B:LongNBTKiller=true
# The maximum depth of NBTTagCompound and NBTTagList.
# It will only take effect if LongNBTKiller is enabled.
I:MaxNBTDepth=2048
# The maximum size of NBT.
# It will only take effect if LongNBTKiller is enabled.
I:MaxNBTSize=16777216
}
avaritaddons {
# This option is used to fix some item duplication issues with Auto Extreme Crafting Table.
B:TileEntityExtremeAutoCrafterFixes=true
}
customstartinggear {
# This option causes CustomStartingGear to standardize the encoding of file reads to UTF-8,
# preventing them from having problems on computers in certain regions.
B:DataManagerCharSetFixes=true
}
tconevo {
# Fix a special crash issue that would cause special cases,
# reporting that they were attributed to xyz.phanta.tconevo.integration.avaritia.client.AvaritiaMaterialModel$BakedAvaritiaMaterialModel$ WithoutHalo handleCosmicLighting().
B:HandleCosmicLightingNPEFixes=true
}
advancedrocketry {
# Fix the NPE problem that occasionally occurs with BiomeChanger.
B:ItemBiomeChanger=true
# When the planetDefs.xml file is corrupted, make it regenerate the file instead of letting it damn near crash.
# This is usually only a problem if the game process is unexpectedly exited, and the file is usually unrecoverable without a backup.
B:PreventDimensionManagerCrash=true
}
ancientspellcraft {
# (Client Only) Fix a memory leak caused by AncientSpellCraft's FakePlayer,
# mainly in that it would cause the first world loaded not to be cleaned up by Java GC.
# Experimental, if a crash occurs with anything related to ASFakePlayer, please report this issue immediately.
B:ASFakePlayerFixes=true
}
botania {
# (Client Only) Automatically clean up data when the player switches worlds, optional feature as WeakHashMap does not usually cause memory leaks.
B:AutoCleanManaNetworkHandler=true
}
journeymap {
# (Client Only) Automatically clears the radar player cache when a player switches worlds to avoid memory leaks caused in the client.
B:AutoCleanPlayerRadar=true
}
libvulpes {
# (Client Only) Automatically clean up InputSyncHandler's spaceDown data when the player switches worlds.
# Although libvulpes has already coded this judgment, there is still a small chance that it will trigger a memory leak.
B:AutoCleanInputSyncHandlerData=true
}
mekanism {
# (Client Only) Automatically clean up old player data when the player switches worlds to address some memory leaks,
# and while Mekanism has written cleanup features, they will only clean up when returning to the main menu.
B:AutoCleanPortableTeleports=true
}
modularrouters {
# Prevent routers from recognizing fluid bucket containers to avoid unexpected fluid replication problems.
B:BufferHandlerFluidHandlerFixes=true
}
rpsideas {
# (Client Only) Fix memory leaks caused by improper object management on the client side.
B:ItemBioticSensorMemoryLeakFixes=true
}
}
debug {
B:EnableDebugLog=false
}
}