Skip to content

Commit 2b74589

Browse files
committed
Remove ElunaInfo overload for map and instance id
Now requires you to use a properly constructed key
1 parent f4dfaac commit 2b74589

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

ElunaMgr.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,6 @@ void ElunaMgr::Destroy(ElunaInfo const& info)
5555
Destroy(info.key);
5656
}
5757

58-
ElunaInfo::ElunaInfo(uint32 mapId, uint32 instanceId)
59-
{
60-
key = ElunaInfoKey::MakeKey(mapId, instanceId);
61-
}
62-
6358
ElunaInfo::~ElunaInfo()
6459
{
6560
if (IsValid() && sElunaMgr)

ElunaMgr.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ struct ElunaInfo
6565
public:
6666
ElunaInfo() : key() {}
6767
ElunaInfo(ElunaInfoKey key) : key(key) {}
68-
ElunaInfo(uint32 mapId, uint32 instanceId);
6968
~ElunaInfo();
7069

7170
public:

0 commit comments

Comments
 (0)