forked from MagicBane/Server
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.5 KiB
41 lines
1.5 KiB
3 years ago
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
||
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
||
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
||
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
||
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
||
|
// Magicbane Emulator Project © 2013 - 2022
|
||
|
// www.magicbane.com
|
||
|
|
||
|
|
||
|
package engine.jobs;
|
||
|
|
||
|
import engine.gameManager.MovementManager;
|
||
|
import engine.job.AbstractScheduleJob;
|
||
|
import engine.net.client.msg.ChangeAltitudeMsg;
|
||
|
import engine.objects.PlayerCharacter;
|
||
|
|
||
|
public class FlightJob extends AbstractScheduleJob {
|
||
|
|
||
|
private final PlayerCharacter pc;
|
||
|
private final ChangeAltitudeMsg msg;
|
||
|
private final int duration;
|
||
|
|
||
|
public FlightJob(PlayerCharacter pc, ChangeAltitudeMsg msg, int duration) {
|
||
|
super();
|
||
|
this.msg = msg;
|
||
|
this.duration = duration;
|
||
|
this.pc = pc;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
protected void doJob() {
|
||
|
if (this.pc != null && this.msg != null)
|
||
|
MovementManager.updateFlight(pc, msg, duration);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
protected void _cancelJob() {
|
||
|
}
|
||
|
|
||
|
}
|