diff --git a/src/game-engine/config/shop-config.ts b/src/game-engine/config/shop-config.ts index 4712d5b49..56b7d60e2 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(); }