mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
8b9480de40
* Disable anim previews when center isn't the player * Abuse configs to change the edit loadout 3DEN entry * Remove inheriting as it's not needed * Remove uneeded condition * Add zeus modules for ACE Arsenal, revert old arsenal modules * Add 3 new arsenal EHs * Add a setting to disable the identity tabs in ace arsenal * Pass loadoutName in the onloadoutLoad EH * Change foreach to forEach and ctrlcommit to ctrlCommit * Resize the right window when the load bar isn't there * Add a tooltip for the "clear container" button * Improve onKeyDown, add classname copying using ctrl+c
33 lines
677 B
C++
33 lines
677 B
C++
class CfgFactionClasses {
|
|
class GVAR(AI) {
|
|
displayName = "ACE AI";
|
|
priority = 2;
|
|
side = 7;
|
|
};
|
|
class GVAR(Captive) {
|
|
displayName = "ACE Captive";
|
|
priority = 2;
|
|
side = 7;
|
|
};
|
|
class GVAR(Medical) {
|
|
displayName = "ACE Medical";
|
|
priority = 2;
|
|
side = 7;
|
|
};
|
|
class GVAR(Repair) {
|
|
displayName = "ACE Repair";
|
|
priority = 2;
|
|
side = 7;
|
|
};
|
|
class GVAR(Utility) {
|
|
displayName = "ACE Utility";
|
|
priority = 2;
|
|
side = 7;
|
|
};
|
|
class GVAR(Arsenal) {
|
|
displayName = "ACE Arsenal";
|
|
priority = 2;
|
|
side = 7;
|
|
};
|
|
};
|