mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
c7e6549eb2
* Cookoff - Reword settings and move to cba * Update stringtable.xml
19 lines
429 B
C++
19 lines
429 B
C++
|
|
class ACE_Settings {
|
|
class GVAR(enable) {
|
|
movedToSqf = 1;
|
|
};
|
|
class GVAR(enableAmmobox) {
|
|
movedToSQF = 1;
|
|
};
|
|
class GVAR(enableAmmoCookoff) { // For CBA Setting Switch: we can eliminate and just use (ammoCookoffDuration == 0)
|
|
movedToSQF = 1;
|
|
};
|
|
class GVAR(ammoCookoffDuration) {
|
|
movedToSQF = 1;
|
|
};
|
|
class GVAR(probabilityCoef) {
|
|
movedToSQF = 1;
|
|
};
|
|
};
|