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

@ -21,6 +21,8 @@ public final class StargateGateConfig {
private boolean destroyExplosion = false;
private ChatColor signColor;
private String defaultGateNetwork = "central";
private static final int activeTime = 10;
private static final int openTime = 10;
/**
* Instantiates a new stargate config
@ -31,6 +33,24 @@ public final class StargateGateConfig {
loadGateConfig(newConfig);
}
/**
* Gets the amount of seconds a portal should be open before automatically closing
*
* @return <p>The open time of a gate</p>
*/
public 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 int getActiveTime() {
return activeTime;
}
/**
* Gets the maximum number of gates allowed on each network
*