mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
b2b49cc993
* fix * Fix unrelated TRACE macro in arsenal * Update addons/arsenal/functions/fnc_onArsenalOpen.sqf Co-authored-by: PabstMirror <pabstmirror@gmail.com> --------- Co-authored-by: PabstMirror <pabstmirror@gmail.com>
20 lines
362 B
Plaintext
20 lines
362 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: LinkIsGrim
|
|
* Text statement for the magazine capacity stat.
|
|
*
|
|
* Arguments:
|
|
* 0: Stats Array <ARRAY> (not used)
|
|
* 1: Item config path <CONFIG>
|
|
*
|
|
* Return Value:
|
|
* String to display
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["", "_config"];
|
|
TRACE_1("statTextStatement_magCount",_config);
|
|
|
|
getNumber (_config >> "count");
|