Skip to content

Commit

Permalink
Update Structs.html
Browse files Browse the repository at this point in the history
  • Loading branch information
SoftMonster committed Oct 18, 2024
1 parent 67bd6e8 commit af599ad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Modding/Structs.html
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ <h2>Extracted Structs:</h2>
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 = '';

Expand Down

0 comments on commit af599ad

Please sign in to comment.