From 9c7c0f9989fa0cb2e64f9b51e04332f49e6acda1 Mon Sep 17 00:00:00 2001 From: Koncord Date: Mon, 1 May 2017 21:14:30 +0800 Subject: [PATCH] [General] Send creatureModel & useCreatureName via PacketPlayerBaseInfo --- components/openmw-mp/Packets/Player/PacketPlayerBaseInfo.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/openmw-mp/Packets/Player/PacketPlayerBaseInfo.cpp b/components/openmw-mp/Packets/Player/PacketPlayerBaseInfo.cpp index b2e80a0f8..4df7e368e 100644 --- a/components/openmw-mp/Packets/Player/PacketPlayerBaseInfo.cpp +++ b/components/openmw-mp/Packets/Player/PacketPlayerBaseInfo.cpp @@ -25,4 +25,7 @@ void PacketPlayerBaseInfo::Packet(RakNet::BitStream *bs, bool send) RW(player->npc.mFlags, send); RW(player->birthsign, send); + + RW(player->creatureModel, send); + RW(player->useCreatureName, send); }