mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Fixed a syntax error, Fixed nametags module order as per last pull request
This commit is contained in:
parent
5496333c26
commit
3206e3b537
@ -45,7 +45,7 @@ class CfgVehicles {
|
||||
|
||||
class ACE_Module;
|
||||
class GVAR(module): ACE_Module {
|
||||
author = "ECSTRING(common,ACETeam);
|
||||
author = ECSTRING(common,ACETeam);
|
||||
category = "ACE";
|
||||
displayName = CSTRING(Module_DisplayName);
|
||||
function = QFUNC(moduleInit);
|
||||
|
@ -9,12 +9,6 @@ class CfgVehicles {
|
||||
isGlobal = 1;
|
||||
icon = QUOTE(PATHTOF(UI\Icon_Module_NameTags_ca.paa));
|
||||
class Arguments {
|
||||
class PlayerNamesViewDistance {
|
||||
displayName = CSTRING(PlayerNamesViewDistance_DisplayName);
|
||||
description = CSTRING(PlayerNamesViewDistance_Description);
|
||||
typeName = "NUMBER";
|
||||
defaultValue = 5;
|
||||
};
|
||||
class showPlayerNames {
|
||||
displayName = CSTRING(ShowPlayerNames);
|
||||
description = CSTRING(ShowPlayerNames_Desc);
|
||||
@ -47,6 +41,12 @@ class CfgVehicles {
|
||||
};
|
||||
};
|
||||
};
|
||||
class playerNamesViewDistance {
|
||||
displayName = CSTRING(PlayerNamesViewDistance_DisplayName);
|
||||
description = CSTRING(PlayerNamesViewDistance_Description);
|
||||
typeName = "NUMBER";
|
||||
defaultValue = 5;
|
||||
};
|
||||
class showNamesForAI {
|
||||
displayName = CSTRING(showNamesForAI_DisplayName);
|
||||
description = CSTRING(showNamesForAI_Description);
|
||||
|
Loading…
Reference in New Issue
Block a user