diff options
author | Alexander Harkness <bearbin@gmail.com> | 2014-02-05 19:24:08 +0100 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2014-02-05 19:24:08 +0100 |
commit | b9aa0420a3f4d8374960860d2e570d724076c9e5 (patch) | |
tree | b67e4e427ef14174c3dd588f2bf12311da38c995 /src/Simulator/RedstoneSimulator.cpp | |
parent | Improved the signedness conversion. (diff) | |
parent | Fixed most of the reordering warnings (diff) | |
download | cuberite-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/Simulator/RedstoneSimulator.cpp')
-rw-r--r-- | src/Simulator/RedstoneSimulator.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Simulator/RedstoneSimulator.cpp b/src/Simulator/RedstoneSimulator.cpp index 6b7ae3196..298175ad7 100644 --- a/src/Simulator/RedstoneSimulator.cpp +++ b/src/Simulator/RedstoneSimulator.cpp @@ -946,11 +946,11 @@ void cRedstoneSimulator::HandlePressurePlate(int a_BlockX, int a_BlockY, int a_B { public: cWoodenPressurePlateCallback(int a_BlockX, int a_BlockY, int a_BlockZ, cWorld * a_World) : + m_Entity(NULL), + m_World(a_World), m_X(a_BlockX), m_Y(a_BlockY), - m_Z(a_BlockZ), - m_World(a_World), - m_Entity(NULL) + m_Z(a_BlockZ) { } |