diff options
| author | Ovahlord <dreadkiller@gmx.de> | 2024-01-22 08:57:06 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-22 08:57:06 +0100 |
| commit | b81fa2e8a3862b8f2ed020f2c52caa93901a530a (patch) | |
| tree | 560c188f5ff61b6c12113512bf7ba868217237e2 /src/server/game/Entities/Conversation | |
| parent | a4a4d010a0e329d4dbd82c0be5feab1fc06c8834 (diff) | |
Core/Object: use the final keyword for several (World)Object classes that should not get derived from (#29585)
Diffstat (limited to 'src/server/game/Entities/Conversation')
| -rw-r--r-- | src/server/game/Entities/Conversation/Conversation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Entities/Conversation/Conversation.h b/src/server/game/Entities/Conversation/Conversation.h index 276b037c925..bfa869154e6 100644 --- a/src/server/game/Entities/Conversation/Conversation.h +++ b/src/server/game/Entities/Conversation/Conversation.h @@ -26,7 +26,7 @@ class Unit; class SpellInfo; enum class ConversationActorType : uint32; -class TC_GAME_API Conversation : public WorldObject, public GridObject<Conversation> +class TC_GAME_API Conversation final : public WorldObject, public GridObject<Conversation> { public: Conversation(); |
