diff --git a/src/main/java/com/eu/habbo/habbohotel/items/interactions/games/battlebanzai/InteractionBattleBanzaiTeleporter.java b/src/main/java/com/eu/habbo/habbohotel/items/interactions/games/battlebanzai/InteractionBattleBanzaiTeleporter.java index d88b9603..a3213f07 100644 --- a/src/main/java/com/eu/habbo/habbohotel/items/interactions/games/battlebanzai/InteractionBattleBanzaiTeleporter.java +++ b/src/main/java/com/eu/habbo/habbohotel/items/interactions/games/battlebanzai/InteractionBattleBanzaiTeleporter.java @@ -76,7 +76,7 @@ public class InteractionBattleBanzaiTeleporter extends HabboItem room.updateItem(target); roomUnit.setGoalLocation(room.getLayout().getTile(roomUnit.getX(), roomUnit.getY())); roomUnit.setCanWalk(false); - Emulator.getThreading().run(new BanzaiRandomTeleport(this, target, roomUnit, room), 500); + Emulator.getThreading().run(new BanzaiRandomTeleport(this, target, roomUnit, room), 1000); } @Override diff --git a/src/main/java/com/eu/habbo/threading/runnables/BanzaiRandomTeleport.java b/src/main/java/com/eu/habbo/threading/runnables/BanzaiRandomTeleport.java index d870ce2c..3b601716 100644 --- a/src/main/java/com/eu/habbo/threading/runnables/BanzaiRandomTeleport.java +++ b/src/main/java/com/eu/habbo/threading/runnables/BanzaiRandomTeleport.java @@ -1,7 +1,9 @@ package com.eu.habbo.threading.runnables; +import com.eu.habbo.Emulator; import com.eu.habbo.habbohotel.rooms.Room; import com.eu.habbo.habbohotel.rooms.RoomUnit; +import com.eu.habbo.habbohotel.rooms.RoomUserRotation; import com.eu.habbo.habbohotel.users.Habbo; import com.eu.habbo.habbohotel.users.HabboItem; @@ -28,6 +30,7 @@ public class BanzaiRandomTeleport implements Runnable this.toItem.setExtradata("0"); this.room.updateItem(this.item); this.room.updateItem(this.toItem); + this.habbo.setRotation(RoomUserRotation.fromValue(Emulator.getRandom().nextInt(8))); this.room.teleportRoomUnitToItem(this.habbo, this.toItem); } }