diff --git a/addons/frag/functions/fnc_getMaterialInfo.sqf b/addons/frag/functions/fnc_getMaterialInfo.sqf index 9f954bba48..21a94ac267 100644 --- a/addons/frag/functions/fnc_getMaterialInfo.sqf +++ b/addons/frag/functions/fnc_getMaterialInfo.sqf @@ -57,4 +57,4 @@ _material = switch (true) do { GVAR(spallMaterialCache) set [_surfType, _material]; TRACE_2("materialCacheSet",_surfType,_material); -_material \ No newline at end of file +_material diff --git a/addons/frag/functions/fnc_getSpallInfo.sqf b/addons/frag/functions/fnc_getSpallInfo.sqf index 6cb6970c9a..7126803933 100644 --- a/addons/frag/functions/fnc_getSpallInfo.sqf +++ b/addons/frag/functions/fnc_getSpallInfo.sqf @@ -32,4 +32,4 @@ private _ammoInfo = [_caliber, _explosive, _indirectHit]; GVAR(spallInfoCache) set [_ammo, _ammoInfo]; -_ammoInfo \ No newline at end of file +_ammoInfo diff --git a/addons/frag/functions/fnc_initBlackList.sqf b/addons/frag/functions/fnc_initBlackList.sqf index 37e2b1787b..79d3c86a72 100644 --- a/addons/frag/functions/fnc_initBlackList.sqf +++ b/addons/frag/functions/fnc_initBlackList.sqf @@ -4,7 +4,7 @@ * Adds setting defined blacklisted rounds to blacklist * * Arguments: - * Mne + * None * * Return Value: * None @@ -48,5 +48,4 @@ for "_i" from 0 to _items - 1 do { GVAR(shouldFragCache) set [_convArray#_i, false]; }; - -INFO_2("Initialized blacklist. Total items found: %1, number of items failed: %2", _items, _errors); \ No newline at end of file +INFO_2("Initialized blacklist. Total items found: %1, number of items failed: %2", _items, _errors); diff --git a/addons/frag/functions/fnc_initMaterialCache.sqf b/addons/frag/functions/fnc_initMaterialCache.sqf index 9e56b3daff..81ec5220cb 100644 --- a/addons/frag/functions/fnc_initMaterialCache.sqf +++ b/addons/frag/functions/fnc_initMaterialCache.sqf @@ -94,4 +94,4 @@ GVAR(spallMaterialCache) = createHashMapFromArray [ ["a3\data_f\penetration\weapon_plate.bisurf","metal"], ["a3\data_f\penetration\wood.bisurf","wood"], ["a3\data_f\penetration\wood_plate.bisurf","wood"] -]; \ No newline at end of file +]; diff --git a/addons/frag/functions/fnc_initRound.sqf b/addons/frag/functions/fnc_initRound.sqf index 8b25afb322..377a5b74ca 100644 --- a/addons/frag/functions/fnc_initRound.sqf +++ b/addons/frag/functions/fnc_initRound.sqf @@ -75,4 +75,4 @@ if (GVAR(debugOptions) && (_shouldFrag || _shouldSpall)) then { [_projectile, "red", true] call FUNC(dev_trackObj); }; #endif -TRACE_2("initExit",_shouldFrag,_shouldSpall); \ No newline at end of file +TRACE_2("initExit",_shouldFrag,_shouldSpall); diff --git a/addons/frag/functions/fnc_shouldFrag.sqf b/addons/frag/functions/fnc_shouldFrag.sqf index de9e04b092..37805be7bb 100644 --- a/addons/frag/functions/fnc_shouldFrag.sqf +++ b/addons/frag/functions/fnc_shouldFrag.sqf @@ -38,4 +38,4 @@ if (_skip == 1 || (_force == 0 && {_explosive < 0.5 || {_indirectHit < 3 GVAR(shouldFragCache) set [_ammo, _shouldFrag]; -_shouldFrag \ No newline at end of file +_shouldFrag diff --git a/addons/frag/functions/fnc_shouldSpall.sqf b/addons/frag/functions/fnc_shouldSpall.sqf index 1d77a07256..1ece3ba0c8 100644 --- a/addons/frag/functions/fnc_shouldSpall.sqf +++ b/addons/frag/functions/fnc_shouldSpall.sqf @@ -30,4 +30,4 @@ _shouldSpall = _caliber * GVAR(spallIntensity) >= 2.5 || (_explosive >= 0.5 && _ GVAR(shouldSpallCache) set [_ammo, _shouldSpall]; -_shouldSpall \ No newline at end of file +_shouldSpall