Skip to content

Commit

Permalink
Use UTF-8 Encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
IntegerLimit committed Feb 10, 2024
1 parent 842f6c2 commit 90ef79d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/tasks/moduleSpecific/transformQuestBook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ export async function transformQuestBook(): Promise<void> {
const questPathExpertSource = upath.join(sharedQBDefaults, "saved_quests", "ExpertQuests.json");

// Quest Book Objects
const questBookNormal: QuestBook = JSON.parse((await fs.promises.readFile(questPathNormalSource)).toString());
const questBookExpert: QuestBook = JSON.parse((await fs.promises.readFile(questPathExpertSource)).toString());
const questBookNormal: QuestBook = JSON.parse(await fs.promises.readFile(questPathNormalSource, "utf-8"));
const questBookExpert: QuestBook = JSON.parse(await fs.promises.readFile(questPathExpertSource, "utf-8"));

// Quest Book Paths
const questPathNormalDefault = upath.join(sharedQBDefaults, "DefaultQuests.json");
Expand Down

0 comments on commit 90ef79d

Please sign in to comment.