diff options
author | Alexander Harkness <bearbin@gmail.com> | 2014-02-10 18:27:46 +0100 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2014-02-10 18:27:46 +0100 |
commit | 2152b8ca19677f463c082c34ca0c87fc4cc41f4c (patch) | |
tree | be8fa84d5025b30ccb9d6561a2d6deaf90a18e82 /src/Items | |
parent | Merge branch 'master' into playerimprovements (diff) | |
parent | Maybe fixed boat placing (diff) | |
download | cuberite-2152b8ca19677f463c082c34ca0c87fc4cc41f4c.tar cuberite-2152b8ca19677f463c082c34ca0c87fc4cc41f4c.tar.gz cuberite-2152b8ca19677f463c082c34ca0c87fc4cc41f4c.tar.bz2 cuberite-2152b8ca19677f463c082c34ca0c87fc4cc41f4c.tar.lz cuberite-2152b8ca19677f463c082c34ca0c87fc4cc41f4c.tar.xz cuberite-2152b8ca19677f463c082c34ca0c87fc4cc41f4c.tar.zst cuberite-2152b8ca19677f463c082c34ca0c87fc4cc41f4c.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Items/ItemBoat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Items/ItemBoat.h b/src/Items/ItemBoat.h index 31d1ca52e..dd6eaaf14 100644 --- a/src/Items/ItemBoat.h +++ b/src/Items/ItemBoat.h @@ -31,7 +31,7 @@ public: virtual bool OnItemUse(cWorld * a_World, cPlayer * a_Player, const cItem & a_Item, int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_Dir) override { - if (a_Dir != BLOCK_FACE_YM || a_Dir != BLOCK_FACE_NONE) + if (a_Dir > 0) { return false; } |