mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
856ffb5579
* 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)
33 lines
1.0 KiB
C++
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;
|
|
};
|
|
};
|