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.
46 lines
1.5 KiB
46 lines
1.5 KiB
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ . |
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌· |
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀ |
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌ |
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀ |
|
// Magicbane Emulator Project © 2013 - 2022 |
|
// www.magicbane.com |
|
|
|
|
|
package engine.jobs; |
|
|
|
import engine.Enum; |
|
import engine.Enum.PortalType; |
|
import engine.job.AbstractScheduleJob; |
|
import engine.objects.Building; |
|
import engine.objects.Runegate; |
|
import org.pmw.tinylog.Logger; |
|
|
|
public class CloseGateJob extends AbstractScheduleJob { |
|
|
|
private final Building building; |
|
private final Enum.PortalType portalType; |
|
|
|
public CloseGateJob(Building building, PortalType portalType) { |
|
|
|
super(); |
|
this.building = building; |
|
this.portalType = portalType; |
|
} |
|
|
|
@Override |
|
protected void doJob() { |
|
|
|
if (building == null) { |
|
Logger.error("Rungate building was null"); |
|
return; |
|
} |
|
|
|
Runegate._runegates.get(building.getObjectUUID()).deactivatePortal(portalType); |
|
} |
|
|
|
@Override |
|
protected void _cancelJob() { |
|
} |
|
} |
|
|
|
|