write more comments in command structs header

This commit is contained in:
Martin Michelsen
2022-04-01 10:58:28 -07:00
parent 4f67c70239
commit dfa087b606
2 changed files with 30 additions and 10 deletions
+1 -1
View File
@@ -421,7 +421,7 @@ void send_text(shared_ptr<Client> c, StringWriter& w, uint16_t command,
void send_header_text(shared_ptr<Client> c, uint16_t command,
uint32_t guild_card_number, const char16_t* text) {
StringWriter w;
w.put(SC_TextHeader_01_06_11({0, guild_card_number}));
w.put(SC_TextHeader_01_06_11_B0({0, guild_card_number}));
send_text(c, w, command, text);
}