Fixed: set uint16 in resell slotID

merge/2021-11-19
Nuno Gonçalves (Ulukyn) 3 years ago committed by kaetemi
parent a8a0d9162e
commit 05555015ea
No known key found for this signature in database
GPG Key ID: 9873C4D40BB479BC

@ -1858,7 +1858,7 @@ void cbClientBotChatTradeSell( NLNET::CMessage& msgin, const std::string &servic
H_AUTO(cbClientBotChatTradeSell); H_AUTO(cbClientBotChatTradeSell);
uint8 inv; uint8 inv;
uint8 idx; uint16 idx;
uint16 quantity; uint16 quantity;
uint32 price; uint32 price;
CEntityId userId; CEntityId userId;
@ -2645,7 +2645,7 @@ void cbClientWho( NLNET::CMessage& msgin, const std::string &serviceName, NLNET:
return; return;
} }
CPlayer *p = PlayerManager.getPlayer(PlayerManager.getPlayerId(user->getId())); CPlayer *p = PlayerManager.getPlayer(PlayerManager.getPlayerId(user->getId()));
if (NLMISC::nlstricmp( opt.c_str(), "league" ) == 0) if (NLMISC::nlstricmp( opt.c_str(), "league" ) == 0)
{ {
chanID = user->getLeagueId(); chanID = user->getLeagueId();
@ -3402,7 +3402,7 @@ void cbGetNpcIconDesc( NLNET::CMessage& msgin, const std::string & serviceName,
{ {
CEntityId eid; CEntityId eid;
vector<uint32> npcKeys; vector<uint32> npcKeys;
msgin.serial( eid ); msgin.serial( eid );
msgin.serialCont( npcKeys ); msgin.serialCont( npcKeys );
@ -3670,7 +3670,7 @@ TUnifiedCallbackItem CbClientArray[]=
{ "CLIENT:RING_MISSION:MISSION_RING_SELECT",cbRingMissionSelectAction }, { "CLIENT:RING_MISSION:MISSION_RING_SELECT",cbRingMissionSelectAction },
{ "CLIENT:NPC_ICON:GET_DESC", cbGetNpcIconDesc }, { "CLIENT:NPC_ICON:GET_DESC", cbGetNpcIconDesc },
}; };

Loading…
Cancel
Save