Update to latest pre-release including features/fixes from unmerged PRs#23
Open
Xytronix wants to merge 9 commits intoIroriPowered:pre-releasefrom
Open
Update to latest pre-release including features/fixes from unmerged PRs#23Xytronix wants to merge 9 commits intoIroriPowered:pre-releasefrom
Xytronix wants to merge 9 commits intoIroriPowered:pre-releasefrom
Conversation
…le offset and implement chunkunloader whitelist (IroriPowered#20) * Fix Vanilla Bug, use official Hytale API for ActiveChunkUnloader with configurable offset and implement chunkunloader whitelist * fix build issue * fixed compile errors
…upport (IroriPowered#17) * fix: edge case in legacycleanup and added exclusion support * re-deuplication, set back to 150ms. * Fix conflict with SpawnMarkerBlockStateSystem * Added two mixins to fix edge cases caused by AitickThrottler * remove excludespawnmarkernpc * legacycleanup should clean everything on AiTickThrottler false * remove return * CleanupFrozen false now clears everything, legacycleanup only cleans stale entries * change default
…ipping air in UnknownBlockCleaner (IroriPowered#18) * fix: replace per-block logging with summary and iterate by section skipping air in UnknownBlockCleaner * async queue for performance * dedup
* feat: external auth store with OAuth token seeding - Add OAuth token seeding from env vars and CLI flags into credential store - Register --oauth-access-token, --oauth-refresh-token, --oauth-access-expires CLI flags - Add session/identity token fallback when OAuth unavailable - Broaden update check/download auth to accept session tokens - Gate seeding with PreferExternalAuth config option - Add EarlyOptions.isSet() guard to prevent boot crash * remove redundant gate * fix loading issue * populate profile * set profile name * add missing cli flags * add support for refresh * avoid redundant api call * build own authstore * add retry * fix compile * Terminate session on shutdown * add support for external auth file * sync all tokens * fix build error * preserve auth * fix sig * prioritize env vars --------- Co-authored-by: KabanFriends <45000995+KabanFriends@users.noreply.github.com>
* initial work for hytale update 4 * exclude gson from shadowed libs * add null check in MixinPlayerViewRadius * feat: disable SharedInstanceWorlds by default
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Bundles compatibility, mixin gating, crashfixes, and several runtime hardening changes targeting Hytale pre-release
2026.04.30-b4f6a911e.Related issues
Type of change
Implementation details
Pre-release compatibility:
Vector3dmigrated fromcom.hypixel.hytale.math.vector.Vector3d→org.joml.Vector3d(joml accessors.x()/.y()/.z()instead ofgetX/getY/getZ) acrossMixinCollectVisible,WeakLocation,IdlePlayerService,AiTickThrottlerService,ChunkLoaderCommand,MixinSpatialSystem,ParallelSpatialCollector,MixinMotionControllerBase.MixinPortalDeviceSummonPage.refixes$nullGuardSpawnTransform: signature gained leadingPortalTypeparam to match pre-releasegetSpawnTransform.Mixin gating (
RefixesMixinPluginadoption from #7, restructured):mods/IroriPowered_Refixes/Refixes.jsonat early-mixin load and selectively disables Mixins per the config.Mixins.Optimizations(default-on),Mixins.Experimental(default-off),Mixins.Crashfixes(default-on),Mixins.Helpers(default-on,accessor/infra), and
HypixelServices.{Telemetry,LiveConfig}(inverted polarity soTelemetry.Enabled = truereads naturally).Pre-release crashfixes:
MixinFillerBlockUtil- guards theremoveOrphanedFillerslambda againstasyncRef == nullMixinHideEntitySystems- wrapsAdventurePlayerSystem.tickso anIllegalStateExceptionfrom a stale entity ref during cross-world teleport doesn't kill the system (PRAdd MixinHideEntitySystems to prevent world crash on cross-world teleport #16 ).
MixinTriggerVolumesPlugin.onWorldRemoved- null-guardsgetEntityStore().getStore()to skip cleanup when the store wasn't fully initialized.MixinWorld.getPlayers()- null-guardsentityStore.getStore(). The on-thread branch in pre-release callsforEachChunkwithout checkingisStarted();WorldMapManager.setGeneratorinvokes this duringWorld.init()beforeentityStore.start(resourceStorage)runs, producing a NPE chain that causesRemoveWorldEventto fireand re-NPE through TriggerVolumesPlugin.
MixinTelemetryModule/MixinLiveConfigModule- suppress the new telemetry / live-config services which produces ConnectException spam every 5 min.AiTickThrottler hardening:
processWorldcycle (defaultMaxCycleMs = 30); theforEachEntityParallellambda bails out early when exceeded so the world thread can resumeticking.
AtomicBoolean inProgressonWorldState): if a prior cycle'sworld.executeis still queued, don't dispatch another.Checklist
spotlessApplywhen necessary)Additional info