We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afc6df9 commit 5d8134aCopy full SHA for 5d8134a
cheatGUI/src/utils/hackify.ts
@@ -27,13 +27,13 @@ export const itemify = (item: Item[], amount: number) =>
27
28
// Convert rune to Rune ID map
29
// @ts-expect-error
30
-export const runeify = ((item, amount) => {
+export const runeify = (item, amount) =>
31
32
item.map(x => ({
33
ID: x.ID,
34
quantity: amount
35
36
- })).filter(v => v !== undefined)
+ }).filter(v => v !== undefined)
37
});
38
39
@@ -107,4 +107,4 @@ export const getPet = async (text: string): Promise<number | undefined> => {
107
text: text
108
109
return pet.value;
110
-};
+};
0 commit comments