summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Harkness <bearbin@gmail.com>2014-02-10 18:27:46 +0100
committerAlexander Harkness <bearbin@gmail.com>2014-02-10 18:27:46 +0100
commit2152b8ca19677f463c082c34ca0c87fc4cc41f4c (patch)
treebe8fa84d5025b30ccb9d6561a2d6deaf90a18e82
parentMerge branch 'master' into playerimprovements (diff)
parentMaybe fixed boat placing (diff)
downloadcuberite-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
-rw-r--r--src/Items/ItemBoat.h2
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;
}