Skip to content

Commit 92a786a

Browse files
committed
Fixed an issue where ElunaInfoKey Constructor(uint32 mapId, uint32 instanceId) failed to compile due to incorrect assignment to value
1 parent 8cc4477 commit 92a786a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ElunaMgr.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ void ElunaMgr::Destroy(ElunaInfo const& info)
5757

5858
ElunaInfoKey::ElunaInfoKey(uint32 mapId, uint32 instanceId)
5959
{
60-
value = MakeKey(mapId, instanceId);
60+
value = MakeKey(mapId, instanceId).value;
6161
}
6262

6363
bool ElunaInfoKey::operator==(const ElunaInfoKey& other) const

0 commit comments

Comments
 (0)