feat: make the help menu top 5 issues work and configurable (#1293)

* feat: make make the help menu questions work

* address feedback

* typo

* update defaults

* fix and address feedback

* newline
This commit is contained in:
Aaron Kimbrell
2023-11-15 19:30:46 -06:00
committed by GitHub
parent 8b270ca97a
commit 78d8c57752
6 changed files with 62 additions and 6 deletions

View File

@@ -1297,6 +1297,12 @@ void HandlePacket(Packet* packet) {
break;
}
case eWorldMessageType::UI_HELP_TOP_5: {
ClientPackets::SendTop5HelpIssues(packet);
break;
}
default:
LOG("Unknown world packet received: %i", int(packet->data[3]));
}