From 59165dcba5df9fc30f4a9795b550364eb89e9c2b Mon Sep 17 00:00:00 2001 From: STRWarrior Date: Mon, 16 Dec 2013 21:50:57 +0100 Subject: [PATCH] Boats spawn on top of a block. not between 4 blocks. --- src/Items/ItemBoat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;