Updated ModPreprocessorDefine.csx

This commit is contained in:
MrGadget1024 2023-11-09 06:18:52 -05:00
parent f73581a8db
commit 777cc951a8

View File

@ -74,7 +74,7 @@ string AppendNewEntry(string input, string versionNumber)
// Insert the comma and new entry into the "defines" HashSet
input = input.Remove(definesEndIndex - 2, 2); // Remove the trailing "};"
input = input.Insert(definesEndIndex - 2, $",\n{newEntry}\n{indentation}};");
input = input.Insert(definesEndIndex - 2, $",\n{newEntry}\n{indentation}}};");
return input;
}