mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
3c91f6abe3
*enableServerController // weather propagation on the server *useACEWeather // disable ace weather *syncRain *syncWind *syncMisc
24 lines
466 B
Plaintext
24 lines
466 B
Plaintext
//#define DEBUG_MODE_FULL
|
|
#include "script_component.hpp"
|
|
|
|
ADDON = false;
|
|
|
|
PREP(calculateAirDensity);
|
|
PREP(calculateBarometricPressure);
|
|
PREP(displayWindInfo);
|
|
PREP(getMapData);
|
|
PREP(getWind);
|
|
PREP(initModuleSettings);
|
|
PREP(initWind);
|
|
PREP(serverController);
|
|
PREP(updateAceWeather);
|
|
PREP(updateHumidity);
|
|
PREP(updateRain);
|
|
PREP(updateTemperature);
|
|
PREP(updateWind);
|
|
|
|
// Make sure this data is read before client/server postInit
|
|
call FUNC(getMapData);
|
|
|
|
ADDON = true;
|