diff --git a/src/commands/craft.ts b/src/commands/craft.ts index 53f2646..e2127d5 100644 --- a/src/commands/craft.ts +++ b/src/commands/craft.ts @@ -127,7 +127,8 @@ export default { .filter(recipe => recipe.outputs.filter(n => n.item.name.toLowerCase().includes(focused.toLowerCase())).length > 0); const customRecipes = await db('customCraftingRecipes') - .where('station', station); + .where('station', station) + .where('guild', interaction.guildId); const resolvedCustomRecipes = await Promise.all(customRecipes.map(resolveCustomRecipe));