From d543edbd9aa3c2ca0d386cb1c3aabcbceda90e07 Mon Sep 17 00:00:00 2001 From: David Cernat Date: Wed, 26 Jul 2017 06:01:48 +0300 Subject: [PATCH] [Server] Make sure players are initialized as non-werewolves --- apps/openmw-mp/Player.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/openmw-mp/Player.cpp b/apps/openmw-mp/Player.cpp index d980c3282..4bdf0f6c9 100644 --- a/apps/openmw-mp/Player.cpp +++ b/apps/openmw-mp/Player.cpp @@ -34,6 +34,7 @@ void Players::newPlayer(RakNet::RakNetGUID guid) players[guid]->npcStats.blank(); players[guid]->creatureStats.blank(); players[guid]->charClass.blank(); + players[guid]->isWerewolf = false; for (unsigned int i = 0; i < mwmp::Networking::get().maxConnections(); i++) {