Skip to content

Commit 12ac4f5

Browse files
committed
Update mods
- StellarCore
1 parent d4ac7eb commit 12ac4f5

File tree

4 files changed

+67
-14
lines changed

4 files changed

+67
-14
lines changed

CHANGELOG_v2.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# v2.8.9
22
## Update mods
33
- Better Questing Unofficial (4.2.4 -> 4.2.5)
4+
- StellarCore (1.5.4 -> 1.5.13)
45
- PackagedAuto (v1.0.13.55 -> v1.0.13.56)
56

67
* * *

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@
691691
},
692692
{
693693
"projectID": 1064321,
694-
"fileID": 5791405,
694+
"fileID": 5862063,
695695
"required": true
696696
},
697697
{

overrides/config/enderstorage.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
anarchyMode=false
66

77
#Adds Ender Tank support mana from Botania.
8-
botaniaManaSupport=true
8+
botaniaManaSupport=false
99

1010
#Disables the tank on top of the creators heads.
1111
disableCreatorVisuals=false
@@ -14,7 +14,7 @@ disableCreatorVisuals=false
1414
enableAutoCollectItem=minecraft:nether_star|0
1515

1616
#If Ender Tank can be used in inventory slots as fluid capability provider.
17-
enderTankItemFluidHandler=true
17+
enderTankItemFluidHandler=false
1818

1919
#The size of each inventory of EnderStorage. 0 = 3x3, 1 = 3x9, 2 = 6x9
2020
item.storage-size=2
@@ -24,7 +24,7 @@ item.storage-size=2
2424
manaOutputRate=100
2525

2626
#Adds Ender Tank support for mekanism gasses.
27-
mekanismGasSupport=true
27+
mekanismGasSupport=false
2828

2929
#Makes storage connection with the same color only possible inside a dimension. No cross dimension storage.
3030
perDimensionStorage=false

overrides/config/stellar_core.cfg

Lines changed: 62 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ general {
99
bugfixes {
1010

1111
vanilla {
12+
# Fix the NPE problem that occasionally occurs with the client when the server sends a null block packet.
13+
B:ClientNullBlockPacket=true
14+
1215
# If the NBT size is larger than the maximum size, it will display a warning message.
1316
# It will only take effect if LongNBTKiller is enabled.
1417
B:DisplayLargeNBTWarning=true
@@ -32,6 +35,9 @@ general {
3235
}
3336

3437
container {
38+
# Restricts the player from interacting with the world's blocks when the player opens any container interface (except the player inventory).
39+
B:ContainerInteractRestriction=false
40+
3541
# A generic feature that when a player's open TileEntity GUI is uninstalled,
3642
# it also forces the player's open GUI to be closed.
3743
B:ContainerUnloadTileEntityFixes=false
@@ -254,6 +260,11 @@ general {
254260
B:ItemNullifierDupeFixes=true
255261
}
256262

263+
ebwizardry {
264+
# Fix an issue where Imbuement Altar could copy items using a special interact method.
265+
B:BlockImbuementAltarDupeFixes=true
266+
}
267+
257268
}
258269

259270
performance {
@@ -263,7 +274,7 @@ general {
263274
# low FPS conditions, but potentially leads to rendering delays.
264275
B:AlwaysDeferChunkUpdates=false
265276

266-
# (Client/Server Performance) Asynchronous loading of ItemStack's Capability to improve performance.
277+
# (Client/Server Performance | Experimental) Asynchronous loading of ItemStack's Capability to improve performance.
267278
# Conflict with CensoredASM's `delayItemStackCapabilityInit` option.
268279
B:AsyncItemStackCapabilityInit=true
269280

@@ -283,10 +294,16 @@ general {
283294
# (Server Performance) Modified the data structure of capturedBlockSnapshots to a LinkedList to help improve insertion and deletion performance.
284295
B:CapturedBlockSnapshotsImprovements=false
285296

297+
# (Client/Server Performance | Experimental) Cache the TileEntity state of the IBlockState in a chunk to improve performance.
298+
B:ChunkTileEntityCache=false
299+
286300
# (Client/Server Performance) Use long instead of BlockPos to store TileEntities, optimising memory usage and potentially improving performance.
287301
# Conflicts with UniversalTweaks - 'Tile Entity Map' options and StellarCore maybe overrides them.
288302
B:ChunkTileEntityMapImprovements=true
289303

304+
# (Client/Server Performance) Improving Chunk Performance with Improved Data Structures.
305+
B:ChunkTileEntityQueueImprovements=true
306+
290307
# (Server Performance) Improving the performance of ClassInheritanceMultiMap (up to ~40%).
291308
B:ClassInheritanceMultiMapImprovements=true
292309

@@ -308,9 +325,15 @@ general {
308325
# Known to be incompatible with DynamicTrees.
309326
B:ModelBlockStringCanonicalization=true
310327

311-
# (Client/Server Performance) Improving NBTTagCompound Performance with Improved Data Structures.
312-
# Conflict with CensoredASM's `optimizeNBTTagCompoundBackingMap` and `nbtBackingMapStringCanonicalization` option.
313-
B:NBTTagCompoundMapImprovements=true
328+
# (Client/Server Performance) Cache constants -32768 - 32767 of NBTTagByte, NBTTagInt, NBTTagLong, NBTTagFloat, NBTTagDouble using constant pool.
329+
# Like IntegerCache in the JVM, improves memory usage and reduces object creation overhead.
330+
# Incompatible with old version of Quark (< r1.6-189), which modifies the bytecode of the NBTTag class too early.
331+
B:NBTPrimitiveConstantsPool=true
332+
333+
# (Client/Server Performance) Improve the data structure of NBTTagCompound and NBTTagList and optimise the performance of matching, fetching and copying.
334+
# May conflict with other mods optimised for NBT.
335+
# Known to conflict with CensoredASM's `optimizeNBTTagCompoundBackingMap` and `nbtBackingMapStringCanonicalization` option.
336+
B:NBTTagImprovements=true
314337

315338
# (Client Performance) As the configuration name says, use at your own risk.
316339
B:NoGLError=false
@@ -330,8 +353,8 @@ general {
330353
slimeknights.tconstruct.library.client.model.ModifierModelLoader
331354
>
332355

333-
# (Client/Server Performance) Use parallelStream to handle randomTick operations on world blocks to improve performance in more player environments,
334-
# possibly affecting the random logic of the original game.
356+
# (Client/Server Performance) Use parallelStream to handle randomTick operations on world blocks to improve performance in more player environments.
357+
# Note: Possibly affecting the random logic of the original game.
335358
B:ParallelRandomBlockTicker=false
336359

337360
# (Client Performance | Experimental) An feature that uses parallel loading of texture files, improved game loading speed.
@@ -345,11 +368,17 @@ general {
345368
# improve the speed of model loading, if you encounter the game can not be loaded or display anomaly, turn off this option.
346369
B:ResourceExistStateCache=false
347370

348-
# (Client Performance) Deduplicate internal strings of ResourceLocation to reduce memory usage.
371+
# (Client/Server Performance) Deduplicate internal strings of ResourceLocation to reduce memory usage.
349372
# When installed with CensoredASM, turn off the `resourceLocationCanonicalization` feature of CensoredASM.
350373
# StellarCore already has backend integration for it.
374+
# Note: This feature may have a large impact on load times.
351375
B:ResourceLocationCanonicalization=true
352376

377+
# (Client/Server Performance) ResourceLocationCanonicalization Available when enabled, makes the operation process asynchronous,
378+
# dramatically reduces the impact on startup time, but uses more memory (mainly in client model loading, very much more memory) during loading,
379+
# and the memory returns to normal after loading is complete.
380+
B:ResourceLocationCanonicalizationAsync=false
381+
353382
# (Client Performance | Experimental) BakedQuad deduplication of SimpleBakedModel to optimise memory usage.
354383
# Works in most cases, but may cause rendering issues with models in some mods.
355384
B:SimpleBakedModelCanonicalization=false
@@ -381,6 +410,12 @@ general {
381410
# helping to improve the computer freezing problem at game startup, but potentially causing the game to take longer to load.
382411
B:ASMDataTableCPUUsageImprovements=false
383412

413+
# (Client/Server Performance) ChunkManager optimisation, improves performance in more player environments.
414+
B:ChunkManager=true
415+
416+
# When writing to Capability's NBT, if the returned NBT is empty, no content is written, which may help improve performance.
417+
B:DeallocateEmptyCapabilityNBT=true
418+
384419
# (Client Performance | Experimental) Deduplicate unpackedData array to optimise memory usage, with significant optimisation for some mods.
385420
# Works in most cases, but may cause rendering issues with models in some mods.
386421
B:UnpackedBakedQuadDataCanonicalization=false
@@ -430,6 +465,15 @@ general {
430465
# Min: 2
431466
# Max: 60
432467
I:SparkMaxWorkDelay=10
468+
469+
# (Server Performance) Improvements to the way Alf Portals work to slightly improve performance.
470+
B:alfPortalImprovements=true
471+
472+
# (Server Performance) Improvements to the way Pylons work to slightly improve performance.
473+
B:pylonImprovements=true
474+
475+
# (Server Performance) Improvements to the way Rune Altars work to slightly improve performance.
476+
B:runeAltarImprovements=true
433477
}
434478

435479
chisel {
@@ -531,9 +575,6 @@ general {
531575
# (Server Performance) Improved some data structures, slight performance improvements.
532576
B:EnergyNetLocalImprovements=true
533577

534-
# (Server Performance) Improve EnergyNetLocal#getIoTile and EnergyNetLocal#getSubTile fetching speed to optimise performance to some extent.
535-
B:GetIoAndSubTileEnergyNetLocalImprovements=true
536-
537578
# (Server Performance) Improved some data structures, slight performance improvements.
538579
B:GridDataImprovements=true
539580

@@ -630,6 +671,12 @@ general {
630671
B:texturedQuadFloatCanonicalization=true
631672
}
632673

674+
nuclearcraftoverhauled {
675+
# (Server Performance) Improvements search performance of basic recipes.
676+
# Requires disable processor.smart_processor_input option at nuclearcraft.cfg.
677+
B:BasicRecipeSearchImprovements=true
678+
}
679+
633680
}
634681

635682
features {
@@ -766,6 +813,11 @@ general {
766813
B:RandomNetworkUniqueID=false
767814
}
768815

816+
modularrouters {
817+
# (Client) Automatically enable the ECO mode for new routers.
818+
B:RouterECOModeByDefault=true
819+
}
820+
769821
}
770822

771823
}

0 commit comments

Comments
 (0)