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 bd91a9f commit 999422aCopy full SHA for 999422a
index.js
@@ -336,7 +336,7 @@ client.on("interactionCreate", async (interaction) => {
336
data = interaction.customId.split("—");
337
interaction.customId = data.shift();
338
data = data.map(key => {
339
- if (key.startsWith("π") || !isNaN(key.slice(1))) return Number(key.slice(1));
+ if (key.startsWith("π") && !isNaN(key.slice(1))) return Number(key.slice(1));
340
if (key.startsWith("¤")) return Underline._references.get(key.slice(1)) || null;
341
return key;
342
})
0 commit comments