diff --git a/Modding/Structs.html b/Modding/Structs.html index 1484604a..861dda9b 100644 --- a/Modding/Structs.html +++ b/Modding/Structs.html @@ -156,7 +156,8 @@

Extracted Structs:

const structNameMatch = struct.match(/^\s*(\w+)/); if (structNameMatch) { let structName = structNameMatch[1].trim(); - if (structName == "LakeInfo") { structName = "BiomeInfo" } //Always gets this wrong. + if (structName == "LakeInfo") { structName = "BiomeInfo" } //Always gets this wrong. + if (structName == "ShopInfo") { structName = "SettlementInfo" } //Always gets this wrong. const membersOutput = []; let serializeLine = '';