summaryrefslogtreecommitdiffstats
path: root/src/Entities/Floater.cpp
diff options
context:
space:
mode:
authorAlexander Harkness <bearbin@gmail.com>2014-02-05 19:24:08 +0100
committerAlexander Harkness <bearbin@gmail.com>2014-02-05 19:24:08 +0100
commitb9aa0420a3f4d8374960860d2e570d724076c9e5 (patch)
treeb67e4e427ef14174c3dd588f2bf12311da38c995 /src/Entities/Floater.cpp
parentImproved the signedness conversion. (diff)
parentFixed most of the reordering warnings (diff)
downloadcuberite-b9aa0420a3f4d8374960860d2e570d724076c9e5.tar
cuberite-b9aa0420a3f4d8374960860d2e570d724076c9e5.tar.gz
cuberite-b9aa0420a3f4d8374960860d2e570d724076c9e5.tar.bz2
cuberite-b9aa0420a3f4d8374960860d2e570d724076c9e5.tar.lz
cuberite-b9aa0420a3f4d8374960860d2e570d724076c9e5.tar.xz
cuberite-b9aa0420a3f4d8374960860d2e570d724076c9e5.tar.zst
cuberite-b9aa0420a3f4d8374960860d2e570d724076c9e5.zip
Diffstat (limited to 'src/Entities/Floater.cpp')
-rw-r--r--src/Entities/Floater.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Entities/Floater.cpp b/src/Entities/Floater.cpp
index 38160a30e..b910c3769 100644
--- a/src/Entities/Floater.cpp
+++ b/src/Entities/Floater.cpp
@@ -103,10 +103,10 @@ protected:
cFloater::cFloater(double a_X, double a_Y, double a_Z, Vector3d a_Speed, int a_PlayerID, int a_CountDownTime) :
cEntity(etFloater, a_X, a_Y, a_Z, 0.2, 0.2),
- m_PickupCountDown(0),
- m_PlayerID(a_PlayerID),
m_CanPickupItem(false),
+ m_PickupCountDown(0),
m_CountDownTime(a_CountDownTime),
+ m_PlayerID(a_PlayerID),
m_AttachedMobID(-1)
{
SetSpeed(a_Speed);