Skip to content

Commit 18f0c16

Browse files
committed
Fixed an issue where MakeKey, MakeGlobalKey failed to compile due to mismatching data types
1 parent b7370ed commit 18f0c16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ElunaMgr.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ struct ElunaInfo
2020
~ElunaInfo();
2121

2222
public:
23-
static constexpr uint32 MakeKey(uint32 mapId, uint32 instanceId);
24-
static constexpr uint32 MakeGlobalKey(uint32 instanceId);
23+
static constexpr uint64 MakeKey(uint32 mapId, uint32 instanceId);
24+
static constexpr uint64 MakeGlobalKey(uint32 instanceId);
2525

2626
bool IsValid() const;
2727
bool IsGlobal() const;

0 commit comments

Comments
 (0)