Moves activeTime and openTime into the StargateGateConfig

This commit is contained in:
2021-10-23 14:35:07 +02:00
parent deba2e5c2c
commit b7998023f5
3 changed files with 22 additions and 24 deletions

View File

@ -60,10 +60,6 @@ public class Stargate extends JavaPlugin {
public static final ConcurrentLinkedQueue<Portal> activePortalsQueue = new ConcurrentLinkedQueue<>();
private static final Queue<ChunkUnloadRequest> chunkUnloadQueue = new PriorityQueue<>();
//Amount of seconds before deactivating/closing portals
private static final int activeTime = 10;
private static final int openTime = 10;
private static Logger logger;
public static Server server;
public static Stargate stargate;
@ -154,24 +150,6 @@ public class Stargate extends JavaPlugin {
return stargateGateConfig.destroyedByExplosion();
}
/**
* Gets the amount of seconds a portal should be open before automatically closing
*
* @return <p>The open time of a gate</p>
*/
public static int getOpenTime() {
return openTime;
}
/**
* Gets the amount of seconds a portal should be active before automatically deactivating
*
* @return <p>The active time of a gate</p>
*/
public static int getActiveTime() {
return activeTime;
}
/**
* Gets the logger used for logging to the console
*