summaryrefslogtreecommitdiffstats
path: root/source/packets
diff options
context:
space:
mode:
authorfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-02-22 20:31:30 +0100
committerfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-02-22 20:31:30 +0100
commit6015b59f13aeb40e60c461f2842fb6f662b27824 (patch)
tree94412651d20fec3fc291e88b41f35691fcdc65f9 /source/packets
parentNoise function optimization (chunk generation now about 1.5x faster :) (diff)
downloadcuberite-6015b59f13aeb40e60c461f2842fb6f662b27824.tar
cuberite-6015b59f13aeb40e60c461f2842fb6f662b27824.tar.gz
cuberite-6015b59f13aeb40e60c461f2842fb6f662b27824.tar.bz2
cuberite-6015b59f13aeb40e60c461f2842fb6f662b27824.tar.lz
cuberite-6015b59f13aeb40e60c461f2842fb6f662b27824.tar.xz
cuberite-6015b59f13aeb40e60c461f2842fb6f662b27824.tar.zst
cuberite-6015b59f13aeb40e60c461f2842fb6f662b27824.zip
Diffstat (limited to 'source/packets')
-rw-r--r--source/packets/cPacket_PreChunk.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/packets/cPacket_PreChunk.h b/source/packets/cPacket_PreChunk.h
index 6e24ae5ae..cc8147c4a 100644
--- a/source/packets/cPacket_PreChunk.h
+++ b/source/packets/cPacket_PreChunk.h
@@ -15,6 +15,11 @@ public:
, m_PosZ( 0 )
, m_bLoad( false )
{ m_PacketID = E_PRE_CHUNK; }
+ cPacket_PreChunk( int a_PosX, int a_PosZ, bool a_bLoad )
+ : m_PosX( a_PosX )
+ , m_PosZ( a_PosZ )
+ , m_bLoad( a_bLoad )
+ { m_PacketID = E_PRE_CHUNK; }
virtual cPacket* Clone() const { return new cPacket_PreChunk(*this); }
virtual void Serialize(AString & a_Data) const override;