diff options
author | Minetest-j45 <55553015+Minetest-j45@users.noreply.github.com> | 2022-06-02 18:01:40 +0100 |
---|---|---|
committer | Minetest-j45 <55553015+Minetest-j45@users.noreply.github.com> | 2022-06-02 18:01:40 +0100 |
commit | 1a235cd499f659fdded486a8dd1b0ed3fff1cfa6 (patch) | |
tree | 0f2c3f49718021c197304095bb792621c03e2bcd | |
parent | 032bab4c3363ca1fec33734ef18b13ee53458729 (diff) | |
download | mt-1a235cd499f659fdded486a8dd1b0ed3fff1cfa6.tar.xz |
Make Tokens in ToSrvHaveMedia an array
-rw-r--r-- | tosrvcmds.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tosrvcmds.go b/tosrvcmds.go index 981bedd..5006ab8 100644 --- a/tosrvcmds.go +++ b/tosrvcmds.go @@ -62,7 +62,7 @@ type ToSrvGotBlks struct { // ToSrvHaveMedia tells the server that the client has received the media. type ToSrvHaveMedia struct { //mt:len8 - Token uint32 + Tokens []uint32 } // ToSrvDeletedBlks tells the server that the client has deleted Blks. |