From 144d3ed07edce36c56cfff16ab76242ccd816ba2 Mon Sep 17 00:00:00 2001 From: loicbersier Date: Mon, 16 Sep 2019 20:37:25 +0200 Subject: [PATCH] fix typo --- commands/minigame/borgar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/minigame/borgar.js b/commands/minigame/borgar.js index bb9e53d..4c08502 100644 --- a/commands/minigame/borgar.js +++ b/commands/minigame/borgar.js @@ -32,7 +32,7 @@ class borgarCommand extends Command { async exec(message, args) { if (args.time <= 0) args.time = 1; - const ingredients = [ 'bun', 'beef', 'salade', 'tomato', 'cheese', 'pickle', 'onion', 'garlic', 'basil', 'letuce']; + const ingredients = [ 'bun', 'beef', 'salade', 'tomato', 'cheese', 'pickle', 'onion', 'garlic', 'basil', 'lettuce']; let hamIngredient = []; for (let i = 0; i < args.ingredientNumber; i++) { hamIngredient[i] = ingredients[Math.floor( Math.random() * ingredients.length )];