Hytale Update 6 Part 10 Pre-Release Patch Notes (July 30, 2026)

Nimi: Luokka:: nimi : minuutteja min lue

Hytale Update 6 Part 10 is live on the pre-release branch. The July 30, 2026 notes add prefab preview holograms you can summon with /prefabpreview, let Place Block trigger effects rotate on all three axes, fix a batch of fluid rendering bugs on the world map so lava finally looks opaque, and teach dedicated servers to recover on their own when the main world crashes.

Hytale Update 6 Part 10 arrived on July 30, 2026, and it is the newest section on the rolling official Update 6 pre-release patch notes page. If you have been following this cycle with us since Part 8 and Part 9's hardcore mode reveal, Part 10 is a quieter drop on headline features — but an important one for builders, server operators, and anyone who has watched lava vanish into the terrain on the world map. What Is New in Hytale Update 6 Part 10? Part 10 is best read as four themes stacked together. There is a new prefab preview system for builders, a rendering pass that fixes how fluids like lava draw on the world map, a stability feature that lets dedicated servers recover on their own when the main world crashes, and a long tail of bug and crash fixes. On top of that sits one of the biggest modder-facing sections of the whole Update 6 pre-release run. Everything below comes from the official notes. Those notes open with a credit to the community: "A huge thank you to Airijko, LionPa, Eearslya, Ed1lan, Zbeve and Zoltus for the fixes, features, and polish they've brought to this update. Your community contributions make Hytale better for everyone!" That line is worth pausing on, because a meaningful slice of these fixes is community-authored. Zoltus and Eearslya were also named in the Part 1 credits, so several are repeat contributors across the cycle. And Airijko is a familiar name in Hytale modding — author of the "Endless Leveling" mod, which CurseForge spotlighted in a "Top 10 Hytale RPG Mods" editorial published on July 29, the day before Part 10 went live. The notes do not say who wrote which fix, so we will not guess, but the overlap between the mod community and the people patching the game is real. One note on version numbers: the official Part 10 section does not state a build string. Community trackers such as the Hytale wiki number this drop 0.6.0-pre.10, matching the scheme we used for the July 24 0.6.0-pre.9.1 hotfix — but that is community numbering, not an official label. What Is the /prefabpreview Command? The standout builder feature in Part 10 is prefab preview holograms. Instead of pasting a prefab, looking at it, and undoing when it does not fit, you can now project a ghost of it into the world first and walk around it. Players can use the /prefabpreview command to spawn a ghost of any prefab. The command is gated behind world-editor permission, so it will not turn up for ordinary players on a survival server. It ships with tab-completion, which matters when your content pack has hundreds of prefab keys. Plugins get the same capability through a new API. Per the notes, plugins can drop a ghost of any prefab into the world with the new PersistentPrefabPreview API, which reveals a prefab ghost one layer at a time — useful for build-along tutorials, staged construction sequences and any minigame where a structure should appear to assemble itself. If you are already building logic with no code, this pairs neatly with the systems covered in our Trigger Volumes guide. Trigger Effects Can Now Rotate Blocks on All Three Axes This is a small line with large consequences for creators. The Place Block and Replace Block Type trigger effects can now rotate blocks on all three axes, with yaw, pitch and roll parameters supported. Previously, placing a block through a trigger meant accepting whatever orientation you got. Now a single effect can place a stair, beam or decorative block facing exactly where you want it. Both effects also accept optional block states, so trigger-driven building can specify variants rather than just block types. Fluid Rendering on the World Map: Lava Finally Looks Like Lava Part 10 includes a focused pass on fluid rendering on the world map, and it fixes several long-standing readability problems. The official notes list: Solid fluids, such as lava, now appear opaque instead of blending into terrain. Stacked fluids, such as water above lava, now blend correctly. Fluids suspended over empty space are now visible. Thin, single-layer fluids are now visible. Taken together, the world map becomes trustworthy again in volcanic and waterlogged terrain: a lava lake reads as a lava lake, a thin stream stays visible, and a waterfall over a void no longer disappears from the map entirely. Terrain like this — open lava channels through blackened rock, skeleton warriors between you and the ruins — is exactly where the world map used to let you down. This is a general Hytale screenshot from the official media library, not a before-and-after of the new rendering, but it shows the landscape the Part 10 fluid fixes are aimed at. Hytale Dedicated Server Crash Recovery, Explained The most consequential change for server owners is this one: dedicated servers now recover on their own when the main world crashes. The official notes spell out why that matters: "Dedicated servers now recover on their own when the main world crashes. Before, a crash could leave the server unjoinable and kick everyone until an operator reloaded the world or restarted the process." Anyone who has run a community server knows that failure mode: the process is technically alive, the panel says "online", and nobody can join until a human intervenes. Part 10 turns that into something the server handles itself — and operators get control over the behaviour. Servers can now set a crash recovery policy for when a world thread crashes, with policy values of None, Reload or Shutdown, plus MaxAttempts, RetryDelaySeconds and Fallback settings. That lets you choose between silently reloading a flaky world a few times, falling back to another world, or shutting down cleanly so your process supervisor takes over. Our self-hosted versus managed hosting guide and server console tuning guide are both worth a read before Update 6 goes stable. Every Bug and Crash Fix in the July 30 Notes Alongside the features, Part 10 clears a long list of gameplay bugs. Verbatim from the official notes: Projectiles now fall when their supporting block is broken. Fixed emotes overriding server-controlled camera locks. Fixed pasting a prefab so it no longer loses entities. Fixed Trigger Volumes with an enter effect that would not fire unless the volume had per-tick conditions. Fixed a hole in the Forgotten Temple that could trap players. Fixed item descriptions that fill in values as you read them. Entities will no longer phase through fences and other blocks. Fixed the NoesisGUI color picker sometimes forcing chosen color to be fully opaque. Fixed sound effects stacking up and spamming when entity restarted attack animation. Fixed a rendering issue that lowered precision of some shader effects. Fixed servers and singleplayer worlds unloading and reloading chunks too aggressively. Two deserve a callout. The prefab pasting fix means copied structures keep their entities, a persistent frustration for map makers. And the chunk loading fix should reduce the stutter that both dedicated servers and singleplayer worlds have shown under load. There is also one small items change: Thrown Poop no longer deals damage. It remains a projectile; it is simply no longer a weapon. Nine crash fixes Stability is the quiet backbone of this drop. Part 10 fixes nine separate crashes: A crash in the objectives panel. A crash that could occur when an item or block interaction pointed at something missing. A rare server crash when an entity was removed at the wrong moment. A server crash from certain block containers rebuilding. A client crash during interaction when steps finished out of order. A rare client crash near certain entities or with specific player names. Saved worlds that could fail to load after content pack or mod removal. A crash when a player picked up certain items with a pickup effect. A rare client crash in scenes with large particle effect counts. The saved-world fix is the one to note if you run a modded server: removing a content pack or mod could previously leave a world that would not load at all. What Do Modders and Plugin Developers Get in Part 10? This is one of the heaviest modding sections of the Update 6 cycle. The additions: A new Patterned connected block ruleset type, supporting multi-axis rotation and client prediction. Strikethrough support for localized text using <s></s> tags, in both UI frameworks. Two new /fragment sub-commands for portal fragment worlds: toggleui and toggletimer. Game modes can now block emotes entirely with a new optional PreventEmotes boolean, inherited from the parent game mode — the official note cheerfully cites stopping Spectators dabbing on other players. Custom UI can now show 2D player portraits through a new PlayerPortrait element, rendering a head-and-shoulders or full-body avatar from a UUID. Plugins can now harvest a farming block by position with no player involved, via a new FarmingUtil.harvest overload. Universe-scoped persistent resources for plugins, through UniverseResources.register and Universe.registerResource / getResource / flushResource. Unloading a plugin now also unloads any plugins that depend on it, which removes a whole class of dangling-dependency bugs during development. Three modder-facing bug fixes round it out. Removing or renaming an ItemDropList no longer corrupts saved worlds, thanks to a new lenient mode on AssetKeyValidator. Plugins calling stat value functions no longer send a client update when the value has not changed. And there is a security fix worth reading in full: "Fixed a vulnerability where a privileged user could send a malicious asset key that could be used to write files outside its intended pack directory and overwrite server files." That is a path-traversal class issue, and a good argument for running the current pre-release build if you host anything public. Developers building against these APIs may also want our plugin development, Maven and CI/CD guide. When Is Hytale Update 6 Coming Out of Pre-Release? Honestly: no stable Update 6 release date has been announced. As of August 3, 2026, Part 10 is the newest section on the pre-release page, there is no Part 11, and no stable Update 6 build has shipped. The only timing signal on record comes from the July 16, 2026 post "First Look: Chapter 1 and More", where Update 6 was described as arriving "in 2-3 weeks" from that date — which would put it somewhere around August 6 to 13. That was an estimate offered at the time, not a commitment to a date, and it has not been restated or confirmed since. Treat it as context, not a countdown. We track the state of play in our Update 6 release date roundup, which we update as new information is published. How Do I Opt Into the Update 6 Pre-Release? Everything described here lives on the pre-release branch, not on the stable build. If you want to test prefab previews, the new crash recovery policy or the modding APIs before they land for everyone, you need to opt in to the pre-release channel — and you should do it on a copy of your world, not your main save, because pre-release builds change weekly and can regress. Our guide to testing Hytale pre-release builds walks through opting in, keeping backups, and rolling back if something breaks. Find Servers Running the Update 6 Pre-Release Part 10 is a builder-and-operator patch, and the servers that gain most are those running heavy prefab-driven content and custom plugins. Once Update 6 reaches stable, expect a wave of servers rebuilt around the new preview API, three-axis block rotation and the crash recovery policy. You can browse and vote for Hytale servers right here on HytaleCharts, find the communities already testing on pre-release, and list your own server so players can find it. We cover every pre-release section as it drops — bookmark this page and check back for Part 11.