From b63bf258fff3bc09653a25de2e7378d9fdec60d2 Mon Sep 17 00:00:00 2001 From: Koncord Date: Fri, 19 Jan 2018 15:52:05 +0800 Subject: [PATCH] [Client] Remove "virtual" keyword for getLocalActor & getDedicatedActor --- apps/openmw/mwmp/Cell.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/openmw/mwmp/Cell.hpp b/apps/openmw/mwmp/Cell.hpp index 95db511dc..77fd43077 100644 --- a/apps/openmw/mwmp/Cell.hpp +++ b/apps/openmw/mwmp/Cell.hpp @@ -36,8 +36,8 @@ namespace mwmp void uninitializeLocalActors(); void uninitializeDedicatedActors(); - virtual LocalActor *getLocalActor(const std::string &actorIndex); - virtual DedicatedActor *getDedicatedActor(const std::string &actorIndex); + LocalActor *getLocalActor(const std::string &actorIndex); + DedicatedActor *getDedicatedActor(const std::string &actorIndex); bool hasLocalAuthority(); void setAuthority(const RakNet::RakNetGUID& guid);