diff --git a/frontend/src/components/Town/Interactable.ts b/frontend/src/components/Town/Interactable.ts index f61153443..dec2eb23e 100644 --- a/frontend/src/components/Town/Interactable.ts +++ b/frontend/src/components/Town/Interactable.ts @@ -72,7 +72,11 @@ export default abstract class Interactable extends Phaser.GameObjects.Sprite { }); this.overlap(); } - if (this.isOverlapping && this._scene.cursorKeys.space.isDown) { + if ( + this.isOverlapping && + this._scene.cursorKeys.space.isDown && + !this.townController.paused + ) { this.townController.interact(this); this.interact(); }