feat: implement handling vendorStatusRequest (#1346)

this fixes the crafting menu on johny umami not being there on the initial internaction
This commit is contained in:
Aaron Kimbrell 2023-12-20 22:25:21 -06:00 committed by GitHub
parent 799269c79e
commit 42ffd00478
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -690,6 +690,9 @@ void GameMessageHandler::HandleMessage(RakNet::BitStream* inStream, const System
case eGameMessageType::CANCEL_DONATION_ON_PLAYER:
GameMessages::HandleCancelDonationOnPlayer(inStream, entity);
break;
case eGameMessageType::REQUEST_VENDOR_STATUS_UPDATE:
GameMessages::SendVendorStatusUpdate(entity, sysAddr, true);
break;
default:
LOG_DEBUG("Unknown game message ID: %i", messageID);
break;