From 46d5a99f040b2e5649ae124d02104f14488bbee9 Mon Sep 17 00:00:00 2001 From: Ben Carter Date: Fri, 8 Nov 2024 18:15:56 -0500 Subject: [PATCH] fixed issue with wrong type for player instance data --- src/MpDataStore.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MpDataStore.h b/src/MpDataStore.h index 52cfce5..f1da1b7 100644 --- a/src/MpDataStore.h +++ b/src/MpDataStore.h @@ -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,MpInstanceData> instanceData; + std::map,MpPlayerInstanceData> instanceData; MpPlayerData() : player(nullptr), groupId(0) { - instanceData = std::map,MpInstanceData>(); + instanceData = std::map,MpPlayerInstanceData>(); } };