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 beddfb9 commit 56bf13f
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 @@ -155,7 +155,8 @@ <h2>Extracted Structs:</h2>
// Match the first word (struct name)
const structNameMatch = struct.match(/^\s*(\w+)/);
if (structNameMatch) {
const structName = structNameMatch[1].trim();
let structName = structNameMatch[1].trim();
if (structName == "LakeInfo") { structName = "BiomeInfo" } //Always gets this wrong.
const membersOutput = [];
let serializeLine = '';

Expand Down

0 comments on commit 56bf13f

Please sign in to comment.