diff options
Diffstat (limited to 'src/game-server/charactercomponent.h')
-rw-r--r-- | src/game-server/charactercomponent.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game-server/charactercomponent.h b/src/game-server/charactercomponent.h index d43f0fe4..13fa4f95 100644 --- a/src/game-server/charactercomponent.h +++ b/src/game-server/charactercomponent.h @@ -318,8 +318,8 @@ class CharacterComponent : public Component private: void deserialize(Entity &entity, MessageIn &msg); - CharacterComponent(const CharacterComponent &); - CharacterComponent &operator=(const CharacterComponent &); + CharacterComponent(const CharacterComponent &) = delete; + CharacterComponent &operator=(const CharacterComponent &) = delete; void abilityStatusChanged(int id); void abilityCooldownActivated(); |