summaryrefslogtreecommitdiffstats
path: root/src/Items
diff options
context:
space:
mode:
authorSTRWarrior <niels.breuker@hotmail.nl>2013-12-16 20:53:43 +0100
committerSTRWarrior <niels.breuker@hotmail.nl>2013-12-16 20:53:43 +0100
commit6b21dc6d11673f612d3ca6f3f4ced8809d61ef47 (patch)
tree7aedbf4da8f892065a5ec54edf2e61c2d60084bf /src/Items
parentBoats drop a boat pickup when destroyed by hand. You can now actualy use boats. (diff)
downloadcuberite-6b21dc6d11673f612d3ca6f3f4ced8809d61ef47.tar
cuberite-6b21dc6d11673f612d3ca6f3f4ced8809d61ef47.tar.gz
cuberite-6b21dc6d11673f612d3ca6f3f4ced8809d61ef47.tar.bz2
cuberite-6b21dc6d11673f612d3ca6f3f4ced8809d61ef47.tar.lz
cuberite-6b21dc6d11673f612d3ca6f3f4ced8809d61ef47.tar.xz
cuberite-6b21dc6d11673f612d3ca6f3f4ced8809d61ef47.tar.zst
cuberite-6b21dc6d11673f612d3ca6f3f4ced8809d61ef47.zip
Diffstat (limited to 'src/Items')
-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 c50171c0c..0326b13b8 100644
--- a/src/Items/ItemBoat.h
+++ b/src/Items/ItemBoat.h
@@ -62,7 +62,7 @@ public:
double y = Callbacks.Pos.y;
double z = Callbacks.Pos.z;
- if (x == 0 && y == 0 && z == 0)
+ if ((x == 0) && (y == 0) && (z == 0))
{
return false;
}