summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemBoat.h
diff options
context:
space:
mode:
authortonibm19 <tonibm19@gmail.com>2014-02-10 18:17:44 +0100
committertonibm19 <tonibm19@gmail.com>2014-02-10 18:17:44 +0100
commit75e0b38d835d5707494218748a404bc284f37852 (patch)
treebe8fa84d5025b30ccb9d6561a2d6deaf90a18e82 /src/Items/ItemBoat.h
parentMerge branch 'master' into playerimprovements (diff)
downloadcuberite-75e0b38d835d5707494218748a404bc284f37852.tar
cuberite-75e0b38d835d5707494218748a404bc284f37852.tar.gz
cuberite-75e0b38d835d5707494218748a404bc284f37852.tar.bz2
cuberite-75e0b38d835d5707494218748a404bc284f37852.tar.lz
cuberite-75e0b38d835d5707494218748a404bc284f37852.tar.xz
cuberite-75e0b38d835d5707494218748a404bc284f37852.tar.zst
cuberite-75e0b38d835d5707494218748a404bc284f37852.zip
Diffstat (limited to 'src/Items/ItemBoat.h')
-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;
}