mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
6ce625a52f
* Cleanup spaces in config macros * remove extra whitespace before call --------- Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
14 lines
439 B
C++
14 lines
439 B
C++
class EGVAR(arsenal,stats) {
|
|
class statBase;
|
|
class ACE_isBelt: statBase {
|
|
scope = 2;
|
|
priority = -1;
|
|
stats[] = {"ACE_isBelt"};
|
|
displayName = CSTRING(LinkBelt);
|
|
showText = 1;
|
|
textStatement = QUOTE(localize QUOTE(ELSTRING(Common,Enabled)));
|
|
condition = QUOTE(params[ARR_2('_stat','_config')]; (getNumber (_config >> _stat select 0)) == 1);
|
|
tabs[] = {{}, {4}};
|
|
};
|
|
};
|