From e5aa49fcf17a9f4dd5cdfd6d55170133504f2893 Mon Sep 17 00:00:00 2001 From: Michael Roth Date: Mon, 3 Jun 2024 13:10:10 -0400 Subject: [PATCH] short rests now log to chat when they should --- src/sheets/Tidy5eNpcSheet.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/sheets/Tidy5eNpcSheet.ts b/src/sheets/Tidy5eNpcSheet.ts index d1abadbe8..a8868d99a 100644 --- a/src/sheets/Tidy5eNpcSheet.ts +++ b/src/sheets/Tidy5eNpcSheet.ts @@ -1127,13 +1127,6 @@ export class Tidy5eNpcSheet async _onShortRest(event: Event) { event.preventDefault(); await this._onSubmit(event); - if (SettingsProvider.settings.showNpcRestInChat.get()) { - let obj = { - dialog: true, - chat: false, - }; - return this.shortRest(obj); - } return this.shortRest(); }