diff options
Diffstat (limited to '')
-rw-r--r-- | source/packets/cPacket_BlockChange.h | 2 | ||||
-rw-r--r-- | source/packets/cPacket_BlockPlace.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source/packets/cPacket_BlockChange.h b/source/packets/cPacket_BlockChange.h index 0477dc9c9..a0b3c8843 100644 --- a/source/packets/cPacket_BlockChange.h +++ b/source/packets/cPacket_BlockChange.h @@ -18,7 +18,7 @@ public: virtual void Serialize(AString & a_Data) const override;
int m_PosX;
- char m_PosY;
+ unsigned char m_PosY;
int m_PosZ;
char m_BlockType;
char m_BlockMeta;
diff --git a/source/packets/cPacket_BlockPlace.h b/source/packets/cPacket_BlockPlace.h index 74bf63d28..9fa2fbbce 100644 --- a/source/packets/cPacket_BlockPlace.h +++ b/source/packets/cPacket_BlockPlace.h @@ -24,7 +24,7 @@ public: virtual int Parse(const char * a_Data, int a_Size) override;
int m_PosX; //tolua_export
- char m_PosY; //tolua_export
+ unsigned char m_PosY; //tolua_export
int m_PosZ; //tolua_export
char m_Direction; //tolua_export
|