From 25a4e64e9af554780affb00dc162d57421cff704 Mon Sep 17 00:00:00 2001 From: Dev Date: Wed, 21 Feb 2024 18:37:24 +0000 Subject: [PATCH] Invert Currency check --- project/src/generators/BotLootGenerator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/src/generators/BotLootGenerator.ts b/project/src/generators/BotLootGenerator.ts index 797cfcb9..0c33093c 100644 --- a/project/src/generators/BotLootGenerator.ts +++ b/project/src/generators/BotLootGenerator.ts @@ -401,7 +401,7 @@ export class BotLootGenerator if (weightedItemTpl === "5783c43d2459774bbe137486") { const addCurrency = this.randomUtil.getChance100(25); - if (!addCurrency) + if (addCurrency) { itemWithChildrenToAdd.push(...this.createWalletLoot(newRootItemId)); }