ACE3/addons/weather/ACE_Settings.hpp
jonpas 856ffb5579 Remove rain, lightnings and wind sync (#5622)
* Move ACE Weather rain simulation to server and remove sync (synced correctly by vanilla from server)

* Remove lightnings sync (synced correctly by vanilla, ACE3 doesn't have own lightnings probability)

* Cleanup rain and lightning settings, strings, comments

* Set wind only on server (correctly synced in vanilla, gusts and waves still need manual sync)
2017-10-17 20:19:30 +02:00

33 lines
1.0 KiB
C++

class ACE_Settings {
class GVAR(enableServerController) {
displayName = CSTRING(enableServerController_DisplayName);
description = CSTRING(enableServerController_Description);
typeName = "BOOL";
value = 1;
};
class GVAR(useACEWeather) {
displayName = CSTRING(useACEWeather_DisplayName);
description = CSTRING(useACEWeather_Description);
typeName = "BOOL";
value = 1;
};
class GVAR(syncWind) {
displayName = CSTRING(syncWind_DisplayName);
description = CSTRING(syncWind_Description);
typeName = "BOOL";
value = 1;
};
class GVAR(syncMisc) {
displayName = CSTRING(syncMisc_DisplayName);
description = CSTRING(syncMisc_Description);
typeName = "BOOL";
value = 1;
};
class GVAR(serverUpdateInterval) {
displayName = CSTRING(serverUpdateInterval_DisplayName);
description = CSTRING(serverUpdateInterval_Description);
typeName = "SCALAR";
value = 60;
};
};