Skip to content

Commit

Permalink
Updated dump script to match case for 1.6 assets
Browse files Browse the repository at this point in the history
  • Loading branch information
colecrouter committed Oct 21, 2024
1 parent 22f837d commit 079746b
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/dump.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ const furnitureArray = Object.entries(furniture).map(([key, value]) => {
});

const hats = JSON.parse(
await readFile("./content/Data/Hats.json", "utf-8"),
await readFile("./content/Data/hats.json", "utf-8"),
) as Record<string, string>;
const hatsArray = Object.entries(hats).map(([key, value], i) => {
const props = value.split("/");
Expand Down Expand Up @@ -224,7 +224,7 @@ await copyFile(
"./static/assets/hairstyles2.png",
);
await copyFile(
"./content/maps/springobjects.png",
"./content/Maps/springobjects.png",
"./static/assets/springobjects.png",
);
await copyFile(
Expand Down
Binary file modified static/assets/hairstyles.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/assets/portraits/Emily.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion static/iteminfo.json

Large diffs are not rendered by default.

0 comments on commit 079746b

Please sign in to comment.