diff options
| author | Shauren <shauren.trinity@gmail.com> | 2025-12-27 11:43:04 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2025-12-27 11:43:04 +0100 |
| commit | 0ff5cf4d002be13cd1457ce910db93a1a303f7ae (patch) | |
| tree | 53d04e67ccd7dbd50b35ea835510a782d72c368f /src/server/game/Entities/Conversation | |
| parent | 3b722eb93e18e88b49583f22b175b34768fc532a (diff) | |
Core/Objects: Create a base class for Object to support creating new client visible object types
Diffstat (limited to 'src/server/game/Entities/Conversation')
| -rw-r--r-- | src/server/game/Entities/Conversation/Conversation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Entities/Conversation/Conversation.cpp b/src/server/game/Entities/Conversation/Conversation.cpp index 7891bd9bd68..1900374b243 100644 --- a/src/server/game/Entities/Conversation/Conversation.cpp +++ b/src/server/game/Entities/Conversation/Conversation.cpp @@ -176,7 +176,7 @@ void Conversation::Create(ObjectGuid::LowType lowGuid, uint32 conversationEntry, Relocate(pos); RelocateStationaryPosition(pos); - Object::_Create(ObjectGuid::Create<HighGuid::Conversation>(GetMapId(), conversationEntry, lowGuid)); + _Create(ObjectGuid::Create<HighGuid::Conversation>(GetMapId(), conversationEntry, lowGuid)); PhasingHandler::InheritPhaseShift(this, creator); UpdatePositionData(); |
