blob: 29df2b028c93e685f19c033d4dc16178ee47a3e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#pragma once
using namespace std;
#include "Packet.h"
class SetEquippedItemPacket : public Packet, public enable_shared_from_this<SetEquippedItemPacket>
{
public:
int entity;
int slot;
private:
// 4J Stu - Brought forward from 1.3 to fix #64688 - Customer Encountered: TU7: Content: Art: Aura of enchanted item is not displayed for other players in online game
shared_ptr<ItemInstance> item;
public:
SetEquippedItemPacket();
SetEquippedItemPacket(int entity, int slot, shared_ptr<ItemInstance> item);
virtual void read(DataInputStream *dis);
virtual void write(DataOutputStream *dos);
virtual void handle(PacketListener *listener);
virtual int getEstimatedSize();
virtual bool canBeInvalidated();
virtual bool isInvalidatedBy(shared_ptr<Packet> packet);
// 4J Stu - Brought forward from 1.3 to fix #64688 - Customer Encountered: TU7: Content: Art: Aura of enchanted item is not displayed for other players in online game
shared_ptr<ItemInstance> getItem();
public:
static shared_ptr<Packet> create() { return std::make_shared<SetEquippedItemPacket>(); }
virtual int getId() { return 5; }
};
|