Merge branch '10-update-pet_data' into 'dev'

Bot Height is now fixed on placing on rooms with multiple z heights. Sitting...

See merge request morningstar/Arcturus-Community!11
This commit is contained in:
Harmonic 2019-05-07 18:56:18 -04:00
commit c542f62463

View File

@ -144,11 +144,8 @@ public class BotManager
roomUnit.setRotation(RoomUserRotation.SOUTH);
roomUnit.setLocation(location);
HabboItem topItem = room.getTopItemAt(location.x, location.y);
if (topItem != null )
roomUnit.setZ(topItem.getBaseItem().allowSit() ? topItem.getZ() : topItem.getZ() + Item.getCurrentHeight(topItem));
roomUnit.setPreviousLocationZ(roomUnit.getZ());
roomUnit.setZ(roomUnit.getCurrentLocation().getStackHeight());
roomUnit.setPreviousLocationZ(roomUnit.getCurrentLocation().getStackHeight());
roomUnit.setPathFinderRoom(room);
roomUnit.setRoomUnitType(RoomUnitType.BOT);
roomUnit.setCanWalk(room.isAllowBotsWalk());
@ -164,6 +161,7 @@ public class BotManager
if (topItem != null)
{
roomUnit.setZ(topItem.getBaseItem().allowSit() ? topItem.getZ() : topItem.getZ() + Item.getCurrentHeight(topItem));
try
{
topItem.onWalkOn(bot.getRoomUnit(), room, null);