mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
a917d586cb
* Modernize pylons
* Revert docs/wiki/featurex/fortify.md
* Bring back ACE settings with movedToSQF
* 🤦
* Move settings to separate file, Fix postInit logic problems
* Tabs -> spaces
18 lines
343 B
C++
18 lines
343 B
C++
class ACE_Settings {
|
|
class GVAR(rearmNewPylons) {
|
|
movedToSQF = 1;
|
|
};
|
|
class GVAR(searchDistance) {
|
|
movedToSQF = 1;
|
|
};
|
|
class GVAR(timePerPylon) {
|
|
movedToSQF = 1;
|
|
};
|
|
class GVAR(requireEngineer) {
|
|
movedToSQF = 1;
|
|
};
|
|
class GVAR(requireToolkit) {
|
|
movedToSQF = 1;
|
|
};
|
|
};
|