[General] Change type of refNumIndex & mpNum to unsigned

This commit is contained in:
Koncord 2018-07-03 03:34:30 +08:00
parent 99158beb2e
commit c69819e0db

View File

@ -18,8 +18,8 @@ namespace mwmp
struct CurrentContainer struct CurrentContainer
{ {
std::string refId; std::string refId;
int refNumIndex; unsigned int refNumIndex;
int mpNum; unsigned int mpNum;
bool loot; bool loot;
}; };