diff options
| author | oldmud0 <oldmud0@users.noreply.github.com> | 2021-03-21 22:42:18 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-21 22:42:18 -0500 |
| commit | e9eba9b5ab1b022905d2f6dbe8e6ad2e2a516372 (patch) | |
| tree | 51d8e7e1ea8b79256e033ee3433c6d7a8565b6f6 /include | |
| parent | 94e55e70a21bd6fb0e2f25d6d5174fddf2c7cb08 (diff) | |
| parent | ba36356a8869c1d22802dc0e8c4706dc2ba0f54e (diff) | |
Merge pull request #503 from AttorneyOnline/fix/skip-queue
Fix chat queue being cleared with no way to see what the msgs were
Diffstat (limited to 'include')
| -rw-r--r-- | include/courtroom.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/courtroom.h b/include/courtroom.h index 21191e58..9e0ae584 100644 --- a/include/courtroom.h +++ b/include/courtroom.h @@ -226,6 +226,9 @@ public: // Parse the chat message packet and unpack it into the m_chatmessage[ITEM] format void unpack_chatmessage(QStringList p_contents); + // Skip the current queue, adding all the queue messages to the logs if desynchronized logs are disabled + void skip_chatmessage_queue(); + enum LogMode { IO_ONLY, DISPLAY_ONLY, |
