Document console chat visibility commands

Agent-Logs-Url: https://github.com/MCCTeam/Minecraft-Console-Client/sessions/c900b80f-7e2c-486b-abbf-2c190a9bb750

Co-authored-by: milutinke <441903+milutinke@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-05-04 11:40:00 +00:00 committed by GitHub
parent 1a1caec30a
commit e515921df2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 63 additions and 0 deletions

View file

@ -1132,6 +1132,18 @@ Coordinate = { x = 145, y = 64, z = 2045 }
- **Default:** `true`
#### `Display_Chat`
- **Description:**
Set this to `false` if you want MCC to keep receiving chat without printing it in the console.
This only affects console output. It does not stop bots from receiving chat, and it does not turn off chat file logging.
- **Type:** `boolean`
- **Default:** `true`
#### `History_Input_Records`
- **Description:**

View file

@ -882,6 +882,24 @@ In scripts and remote control, no slash is needed to perform the command, eg. `q
</details>
<details>
<summary><code>clear-console</code></summary>
- **Description:**
Clear the visible console output.
In TUI mode this clears the log panel. In the classic console it clears the terminal screen.
- **Usage:**
```
/clear-console
/cc
```
</details>
<details>
<summary><code>connect</code></summary>
@ -1584,6 +1602,39 @@ In scripts and remote control, no slash is needed to perform the command, eg. `q
</details>
<details>
<summary><code>console-chat</code></summary>
- **Description:**
Temporarily show or hide chat in the console.
This changes the current session only. If you want the same behavior every time MCC starts, use [`Console.General.Display_Chat`](configuration.md#display_chat).
- **Usage:**
```
/console-chat
/console-chat on
/console-chat off
```
- **Examples:**
Hide chat until you turn it back on:
```
/console-chat off
```
Show chat again:
```
/console-chat on
```
</details>
<details>
<summary><code>debug</code></summary>