Skip to content

Commit

Permalink
Rename loop half of moon key item
Browse files Browse the repository at this point in the history
  • Loading branch information
gc committed Nov 28, 2024
1 parent 1e3182e commit 1192545
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/oldschooljs/scripts/prepareItems.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,15 @@ for (const [toChange, toCopy] of equipmentModSrc) {

const itemsToRename = [
{
id: 30105,
id: 30_105,
name: 'Tooth half of key (moon key)'
},
{
id: 30_107,
name: 'Loop half of key (moon key)'
}
];

const itemsBeingModified = new Set([...equipmentModSrc.map(i => i[0]), ...itemsToRename.map(i => i.id)]);

const newItemJSON: { [key: string]: Item } = {};
Expand Down

0 comments on commit 1192545

Please sign in to comment.