mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Added rating settings (#5354)
* added rating settings * moved rating to interaction * Update fnc_canPardon.sqf * Update stringtable.xml * Update CfgVehicles.hpp * Update XEH_postInit.sqf
This commit is contained in:
@ -7,7 +7,7 @@ class CfgVehicles {
|
||||
author = ECSTRING(common,ACETeam);
|
||||
category = "ACE";
|
||||
displayName = CSTRING(Module_DisplayName);
|
||||
function = "ACE_Interaction_fnc_moduleInteraction";
|
||||
function = QFUNC(moduleInteraction);
|
||||
scope = 2;
|
||||
isGlobal = 1;
|
||||
isSingular = 1;
|
||||
@ -19,6 +19,12 @@ class CfgVehicles {
|
||||
typeName = "BOOL";
|
||||
defaultValue = 1;
|
||||
};
|
||||
class DisableNegativeRating {
|
||||
displayName = CSTRING(DisableNegativeRating_DisplayName);
|
||||
description = CSTRING(DisableNegativeRating_Description);
|
||||
typeName = "BOOL";
|
||||
defaultValue = 0;
|
||||
};
|
||||
};
|
||||
class ModuleDescription {
|
||||
description = CSTRING(Module_Description);
|
||||
|
Reference in New Issue
Block a user