From b5bed412288f9e7ea2cb4b5f0f2bc18b397e66d6 Mon Sep 17 00:00:00 2001 From: Tynarus Date: Wed, 24 Mar 2021 14:22:18 -0500 Subject: [PATCH] Update shop-config.ts --- src/game-engine/config/shop-config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game-engine/config/shop-config.ts b/src/game-engine/config/shop-config.ts index 9a04f7c57..146cae84d 100644 --- a/src/game-engine/config/shop-config.ts +++ b/src/game-engine/config/shop-config.ts @@ -34,7 +34,7 @@ export class Shop { this.rateModifier = modifier; this.originalStock = stock; this.container = new ItemContainer(40); - this.containerSubscription = this.container.containerUpdated.subscribe((_update: ContainerUpdateEvent) => this.updateCustomers()) + this.containerSubscription = this.container.containerUpdated.subscribe((_update: ContainerUpdateEvent) => this.updateCustomers()); this.customers = []; this.resetShopStock(); }