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
PZTools' public README still says it is updated for Build 42(.14.0) Unstable, while Project Zomboid 42.20 is now Stable (and the official site currently reports 42.20.4). That makes the compatibility claim stale and leaves it unclear which parser/classifier/serializer assumptions have actually been verified against the current game data.
This is not a request to blindly change the version string. First prove compatibility against current Build 42.20 data, then update the claim to match the evidence.
Run a compatibility pass over current vanilla Build 42.20 distribution inputs:
Distributions.lua
ProceduralDistributions.lua
relevant Distribution_*.lua reference files
current room/container/distribution forms exercised by the item-picker data
Parser / model
Parse the full current vanilla corpus without fatal errors.
Catalogue any new keys/shapes/types that fall through to unknown/default handling.
Tie specific classification gaps to existing issues where possible (for example Add new Bags/Items that are now defaulted as Room #37 if current bags/items still default incorrectly) rather than duplicating tickets.
Distinguish intentional formatting normalization from semantic/reference/comment loss.
Do not use a destructive save against the installed game as verification; copy fixtures to isolated test/temp data.
Build-42 mod layout / identifier boundary
Build 42's official migration guidance introduced two compatibility surfaces that should be checked explicitly during the 42.20 pass rather than assumed irrelevant:
Versioned mod roots. Build-42 mods use version-specific directories plus common; current engine/runtime reports enumerate paths such as common, 42, 42.13, 42.15 and 42.20. When PZTools discovers or opens mod-owned distribution/reference data, verify which physical root won and retain enough source identity to avoid reading an obsolete sibling version or writing to the wrong tree.
For mod/project workflows, keep this compatibility evidence separate from project-creation/import ownership: if the required change is choosing/versioning a mod root rather than parsing distribution semantics, feed the evidence into #54/#51 instead of duplicating project-discovery logic here.
Open representative current distributions and confirm labels/types/containers/proc lists remain meaningful rather than merely parseable.
Surface unsupported/new fields explicitly where dropping them would make an edit unsafe.
For versioned mod fixtures, make the effective source/version visible enough that a user cannot silently edit an older sibling tree while believing they are editing the active Build-42.20 data.
External comparison signal
The current Build-42.20 PZ mapping-tools loot editor documents additional effective-data concepts such as RoomDef/container mappings, project overrides, selector constraints and unresolved-reference diagnostics. Use it as a comparison checklist, not as a mandate to clone its architecture: https://github.com/Unjammer/PZ_Mapping_Tools/blob/main/docs/PZ-B42.20-Procedural-Loot-Editor.md
Verification artifact
Record:
exact tested PZ build/version;
fixture/file counts and, for mod fixtures, the selected physical version root;
parser warnings/errors by category;
any unsupported keys/forms or demonstrated registry/identifier shapes discovered;
round-trip failures with smallest reproducible fixture;
version-root resolution checks proving stale sibling roots are not silently selected;
manual UI checks that cannot yet be automated.
Prefer turning reproducible gaps into existing canonical issues or small new issues rather than leaving a giant undifferentiated compatibility checklist.
Done when
Current Build 42.20 vanilla distribution data has been parsed and inspected with reproducible evidence.
A representative Build-42.20 mod/version-root fixture proves the effective common/versioned-source selection behavior relevant to PZTools, or the artifact explicitly demonstrates that this repo never performs that selection.
Actual 42.20 data has been checked for registry/identifier effects at PZTools' distribution/reference boundaries; any demonstrated gap has a canonical owner rather than speculative duplicate architecture.
Known unsupported/new structures have canonical issues or documented safe handling.
Problem
PZTools' public README still says it is updated for Build 42(.14.0) Unstable, while Project Zomboid 42.20 is now Stable (and the official site currently reports 42.20.4). That makes the compatibility claim stale and leaves it unclear which parser/classifier/serializer assumptions have actually been verified against the current game data.
This is not a request to blindly change the version string. First prove compatibility against current Build 42.20 data, then update the claim to match the evidence.
Official current release context:
Scope
Run a compatibility pass over current vanilla Build 42.20 distribution inputs:
Distributions.luaProceduralDistributions.luaDistribution_*.luareference filesParser / model
Serializer / round trip
Build-42 mod layout / identifier boundary
Build 42's official migration guidance introduced two compatibility surfaces that should be checked explicitly during the 42.20 pass rather than assumed irrelevant:
common; current engine/runtime reports enumerate paths such ascommon,42,42.13,42.15and42.20. When PZTools discovers or opens mod-owned distribution/reference data, verify which physical root won and retain enough source identity to avoid reading an obsolete sibling version or writing to the wrong tree.For mod/project workflows, keep this compatibility evidence separate from project-creation/import ownership: if the required change is choosing/versioning a mod root rather than parsing distribution semantics, feed the evidence into #54/#51 instead of duplicating project-discovery logic here.
Authoritative migration signal:
UI / UX
External comparison signal
The current Build-42.20 PZ mapping-tools loot editor documents additional effective-data concepts such as RoomDef/container mappings, project overrides, selector constraints and unresolved-reference diagnostics. Use it as a comparison checklist, not as a mandate to clone its architecture:
https://github.com/Unjammer/PZ_Mapping_Tools/blob/main/docs/PZ-B42.20-Procedural-Loot-Editor.md
Verification artifact
Record:
Prefer turning reproducible gaps into existing canonical issues or small new issues rather than leaving a giant undifferentiated compatibility checklist.
Done when
common/versioned-source selection behavior relevant to PZTools, or the artifact explicitly demonstrates that this repo never performs that selection.