mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-23 15:20:52 +01:00
Make BB teleporters work like in Habbo
This commit is contained in:
parent
10f1606919
commit
d1bad8ea15
@ -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
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user