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:
parent
c27351c19e
commit
77257b0721
2 changed files with 4 additions and 4 deletions
|
@ -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)
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue