aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Loot/LootMgr.h
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2025-06-10 13:12:33 +0200
committerShauren <shauren.trinity@gmail.com>2025-06-10 13:12:33 +0200
commit7657a289d7981a556f8768134ee55c868df0b04c (patch)
treef22ece86bcef52a6b08ca73164afe96512dfa19a /src/server/game/Loot/LootMgr.h
parent564637b6a068fdfcd6e651cab0cd88af6beb11f2 (diff)
Core/Misc: Kill copy/move constructors for singleton classes
Diffstat (limited to 'src/server/game/Loot/LootMgr.h')
-rw-r--r--src/server/game/Loot/LootMgr.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/server/game/Loot/LootMgr.h b/src/server/game/Loot/LootMgr.h
index fea1155ac63..808cf529201 100644
--- a/src/server/game/Loot/LootMgr.h
+++ b/src/server/game/Loot/LootMgr.h
@@ -73,8 +73,7 @@ typedef std::set<uint32> LootIdSet;
class TC_GAME_API LootStore
{
public:
- explicit LootStore(char const* name, char const* entryName, bool ratesAllowed)
- : m_name(name), m_entryName(entryName), m_ratesAllowed(ratesAllowed) { }
+ explicit LootStore(char const* name, char const* entryName, bool ratesAllowed);
LootStore(LootStore const&) = delete;
LootStore(LootStore&&) noexcept;