From ddd08342c87eb5d4e992c05116120152c16c4700 Mon Sep 17 00:00:00 2001 From: Nicholas Saylor <79181893+nicholassaylor@users.noreply.github.com> Date: Tue, 20 Jan 2026 14:24:30 -0500 Subject: [PATCH] Docs: Show that Data is optional for bounces #5794 --- docs/network protocol.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/network protocol.md b/docs/network protocol.md index 0f6a246c1d..c3e4956557 100644 --- a/docs/network protocol.md +++ b/docs/network protocol.md @@ -225,7 +225,7 @@ Sent to clients after a client requested this message be sent to them, more info | games | list\[str\] | Optional. Game names this message is targeting | | slots | list\[int\] | Optional. Player slot IDs that this message is targeting | | tags | list\[str\] | Optional. Client [Tags](#Tags) this message is targeting | -| data | dict | The data in the [Bounce](#Bounce) package copied | +| data | dict | Optional. The data in the [Bounce](#Bounce) package copied | ### InvalidPacket Sent to clients if the server caught a problem with a packet. This only occurs for errors that are explicitly checked for. @@ -425,7 +425,7 @@ the server will forward the message to all those targets to which any one requir | games | list\[str\] | Optional. Game names that should receive this message | | slots | list\[int\] | Optional. Player IDs that should receive this message | | tags | list\[str\] | Optional. Client tags that should receive this message | -| data | dict | Any data you want to send | +| data | dict | Optional. Any data you want to send | ### Get Used to request a single or multiple values from the server's data storage, see the [Set](#Set) package for how to write values to the data storage. A Get package will be answered with a [Retrieved](#Retrieved) package.