1
0

Boats spawn on top of a block. not between 4 blocks.

This commit is contained in:
STRWarrior 2013-12-16 21:50:57 +01:00
parent 6b21dc6d11
commit 59165dcba5

View File

@ -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;