mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
General - Empty units/weapons arryas in acex cfgPatches, Add acex_main (#8518)
This commit is contained in:
parent
72b63f4394
commit
9395068424
@ -51,7 +51,10 @@ class CfgPatches {
|
||||
VERSION_CONFIG;
|
||||
};
|
||||
|
||||
class XADDON: ADDON {};
|
||||
class XADDON: ADDON {
|
||||
units[] = {};
|
||||
weapons[] = {};
|
||||
};
|
||||
};
|
||||
|
||||
#include "CfgEventHandlers.hpp"
|
||||
|
@ -12,7 +12,10 @@ class CfgPatches {
|
||||
VERSION_CONFIG;
|
||||
};
|
||||
|
||||
class XADDON: ADDON {};
|
||||
class XADDON: ADDON {
|
||||
units[] = {};
|
||||
weapons[] = {};
|
||||
};
|
||||
};
|
||||
|
||||
#include "Cfg3DEN.hpp"
|
||||
|
@ -13,7 +13,10 @@ class CfgPatches {
|
||||
VERSION_CONFIG;
|
||||
};
|
||||
|
||||
class XADDON: ADDON {};
|
||||
class XADDON: ADDON {
|
||||
units[] = {};
|
||||
weapons[] = {};
|
||||
};
|
||||
};
|
||||
|
||||
#include "ACE_Settings.hpp"
|
||||
|
@ -17,7 +17,10 @@ class CfgPatches {
|
||||
VERSION_CONFIG;
|
||||
};
|
||||
|
||||
class XADDON: ADDON {};
|
||||
class XADDON: ADDON {
|
||||
units[] = {};
|
||||
weapons[] = {};
|
||||
};
|
||||
};
|
||||
|
||||
#include "CfgEventHandlers.hpp"
|
||||
|
@ -11,6 +11,11 @@ class CfgPatches {
|
||||
url = CSTRING(URL);
|
||||
VERSION_CONFIG;
|
||||
};
|
||||
|
||||
class XADDON: ADDON { // just in-case anything requires "acex_main"
|
||||
units[] = {};
|
||||
weapons[] = {};
|
||||
};
|
||||
};
|
||||
|
||||
class CfgMods {
|
||||
|
@ -13,7 +13,10 @@ class CfgPatches {
|
||||
VERSION_CONFIG;
|
||||
};
|
||||
|
||||
class XADDON: ADDON {};
|
||||
class XADDON: ADDON {
|
||||
units[] = {};
|
||||
weapons[] = {};
|
||||
};
|
||||
};
|
||||
|
||||
#include "ACE_Settings.hpp"
|
||||
|
@ -13,7 +13,10 @@ class CfgPatches {
|
||||
VERSION_CONFIG;
|
||||
};
|
||||
|
||||
class XADDON: ADDON {};
|
||||
class XADDON: ADDON {
|
||||
units[] = {};
|
||||
weapons[] = {};
|
||||
};
|
||||
};
|
||||
|
||||
#include "CfgEventHandlers.hpp"
|
||||
|
Loading…
Reference in New Issue
Block a user