1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-30 01:15:33 +00:00

Build fix

This commit is contained in:
Koncord 2016-10-23 14:05:12 +08:00
parent c27351c19e
commit 77257b0721
2 changed files with 4 additions and 4 deletions

View file

@ -8,14 +8,14 @@
using namespace std;
using namespace mwmp;
PacketInventory::PacketInventory(RakNet::RakPeerInterface *peer) : BasePacket(peer)
PacketInventory::PacketInventory(RakNet::RakPeerInterface *peer) : PlayerPacket(peer)
{
packetID = ID_GAME_INVENTORY;
}
void PacketInventory::Packet(RakNet::BitStream *bs, BasePlayer *player, bool send)
{
BasePacket::Packet(bs, player, send);
PlayerPacket::Packet(bs, player, send);
RW(player->inventory.action, send);
if (!send)

View file

@ -5,11 +5,11 @@
#ifndef OPENMW_PACKETINVENTORY_HPP
#define OPENMW_PACKETINVENTORY_HPP
#include <components/openmw-mp/Packets/BasePacket.hpp>
#include <components/openmw-mp/Packets/PlayerPacket.hpp>
namespace mwmp
{
class PacketInventory : public BasePacket
class PacketInventory : public PlayerPacket
{
public:
PacketInventory(RakNet::RakPeerInterface *peer);