Initial Repository Push
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
||||
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
||||
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
||||
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
||||
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
||||
// Magicbane Emulator Project © 2013 - 2022
|
||||
// www.magicbane.com
|
||||
|
||||
|
||||
package engine.jobs;
|
||||
|
||||
import engine.gameManager.PowersManager;
|
||||
import engine.job.AbstractJob;
|
||||
import engine.net.client.msg.PerformActionMsg;
|
||||
import engine.objects.PlayerCharacter;
|
||||
|
||||
public class FinishCooldownTimeJob extends AbstractJob {
|
||||
|
||||
PlayerCharacter pc;
|
||||
PerformActionMsg msg;
|
||||
|
||||
public FinishCooldownTimeJob(PlayerCharacter pc, PerformActionMsg msg) {
|
||||
super();
|
||||
this.pc = pc;
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void doJob() {
|
||||
PowersManager.finishCooldownTime(this.msg, this.pc);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user