1
0
mirror of https://github.com/cekis/swg-api synced 2026-01-16 19:05:10 -05:00

Added missing configuration items

This commit is contained in:
Cekis
2021-08-01 14:17:20 -07:00
parent 68e99d7684
commit 8a6950e6d0

View File

@@ -1249,6 +1249,7 @@ public class SwgConfiguration {
private float gcwPointBonus;
private float gcwTokenBonus;
private int triggerVolumeSystem;
private boolean useAnimatedITVs;
GameServer() {}
@@ -1391,6 +1392,7 @@ public class SwgConfiguration {
output += "\nunclaimedAuctionItemDestroyTimeSec=" + unclaimedAuctionItemDestroyTimeSec;
output += "\nveteranRewardTradeInWaitPeriodSeconds=" + veteranRewardTradeInWaitPeriodSeconds;
output += "\nweatherUpdateSeconds=" + weatherUpdateSeconds;
output += "\nuseAnimatedITVs=" + useAnimatedITVs;
return output + "\n\n";
}
@@ -2903,6 +2905,14 @@ public class SwgConfiguration {
public void setShipsEnabled(boolean shipsEnabled) {
this.shipsEnabled = shipsEnabled;
}
public boolean isUseAnimatedITVs() {
return useAnimatedITVs;
}
public void setUseAnimatedITVs(boolean useAnimatedITVs) {
this.useAnimatedITVs = useAnimatedITVs;
}
}
public static class CharacterBuilder {