diff --git a/cheatGUI/src/utils/hackify.ts b/cheatGUI/src/utils/hackify.ts index b61bc1e..b965509 100644 --- a/cheatGUI/src/utils/hackify.ts +++ b/cheatGUI/src/utils/hackify.ts @@ -27,13 +27,13 @@ export const itemify = (item: Item[], amount: number) => // Convert rune to Rune ID map // @ts-expect-error -export const runeify = ((item, amount) => { +export const runeify = (item, amount) => // @ts-expect-error item.map(x => ({ ID: x.ID, quantity: amount // @ts-expect-error - })).filter(v => v !== undefined) + }).filter(v => v !== undefined) }); @@ -107,4 +107,4 @@ export const getPet = async (text: string): Promise => { text: text }); return pet.value; -}; \ No newline at end of file +};