diff options
author | STRWarrior <niels.breuker@hotmail.nl> | 2013-12-16 21:50:57 +0100 |
---|---|---|
committer | STRWarrior <niels.breuker@hotmail.nl> | 2013-12-16 21:50:57 +0100 |
commit | 59165dcba5df9fc30f4a9795b550364eb89e9c2b (patch) | |
tree | 227ff2ec12df2dd09d33baae2f302555f20145aa | |
parent | Using suggestions for Boat placing. (diff) | |
download | cuberite-59165dcba5df9fc30f4a9795b550364eb89e9c2b.tar cuberite-59165dcba5df9fc30f4a9795b550364eb89e9c2b.tar.gz cuberite-59165dcba5df9fc30f4a9795b550364eb89e9c2b.tar.bz2 cuberite-59165dcba5df9fc30f4a9795b550364eb89e9c2b.tar.lz cuberite-59165dcba5df9fc30f4a9795b550364eb89e9c2b.tar.xz cuberite-59165dcba5df9fc30f4a9795b550364eb89e9c2b.tar.zst cuberite-59165dcba5df9fc30f4a9795b550364eb89e9c2b.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 0326b13b8..79c8e9589 100644 --- a/src/Items/ItemBoat.h +++ b/src/Items/ItemBoat.h @@ -67,7 +67,7 @@ public: return false; } - cBoat * Boat = new cBoat(x, y + 1, z); + cBoat * Boat = new cBoat(x + 0.5, y + 1, z + 0.5); Boat->Initialize(a_World); return true; |