fix download quest info message

This commit is contained in:
Martin Michelsen
2022-05-18 01:04:44 -07:00
parent 2c9922cf33
commit 095eb23dab
3 changed files with 8 additions and 6 deletions
+3 -2
View File
@@ -494,8 +494,9 @@ void send_lobby_name(shared_ptr<Client> c, const u16string& text) {
send_text(c, 0x8A, text);
}
void send_quest_info(shared_ptr<Client> c, const u16string& text) {
send_text(c, 0xA3, text);
void send_quest_info(shared_ptr<Client> c, const u16string& text,
bool is_download_quest) {
send_text(c, is_download_quest ? 0xA5 : 0xA3, text);
}
void send_lobby_message_box(shared_ptr<Client> c, const u16string& text) {