mirror of
https://github.com/araxiaonline/mod-mythic-plus.git
synced 2026-06-13 03:02:24 -04:00
fixed issue with wrong type for player instance data
This commit is contained in:
@@ -57,10 +57,10 @@ struct MpPlayerData
|
||||
uint32 groupId;
|
||||
|
||||
// list of maps and instance player is bound to and mythic data related to it
|
||||
std::map<std::pair<uint32,uint32>,MpInstanceData> instanceData;
|
||||
std::map<std::pair<uint32,uint32>,MpPlayerInstanceData> instanceData;
|
||||
|
||||
MpPlayerData() : player(nullptr), groupId(0) {
|
||||
instanceData = std::map<std::pair<uint32,uint32>,MpInstanceData>();
|
||||
instanceData = std::map<std::pair<uint32,uint32>,MpPlayerInstanceData>();
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user