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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user