1
0
Fork 0

Fixed a DropSpenser AddFace bug

This commit is contained in:
Tiger Wang 2014-07-15 22:53:44 +01:00
parent 74155f947c
commit 1df5a1f237
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ cDropSpenserEntity::~cDropSpenserEntity()
void cDropSpenserEntity::AddDropSpenserDir(int & a_BlockX, int & a_BlockY, int & a_BlockZ, NIBBLETYPE a_Direction)
{
switch (a_Direction)
switch (a_Direction & 0x07) // Vanilla uses the 8th bit to determine power state - we don't
{
case E_META_DROPSPENSER_FACING_YM: a_BlockY--; return;
case E_META_DROPSPENSER_FACING_YP: a_BlockY++; return;