General - Empty units/weapons arryas in acex cfgPatches, Add acex_main (#8518)

This commit is contained in:
PabstMirror 2021-10-15 12:54:12 -05:00 committed by GitHub
parent 72b63f4394
commit 9395068424
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 29 additions and 6 deletions

View File

@ -51,7 +51,10 @@ class CfgPatches {
VERSION_CONFIG;
};
class XADDON: ADDON {};
class XADDON: ADDON {
units[] = {};
weapons[] = {};
};
};
#include "CfgEventHandlers.hpp"

View File

@ -12,7 +12,10 @@ class CfgPatches {
VERSION_CONFIG;
};
class XADDON: ADDON {};
class XADDON: ADDON {
units[] = {};
weapons[] = {};
};
};
#include "Cfg3DEN.hpp"

View File

@ -13,7 +13,10 @@ class CfgPatches {
VERSION_CONFIG;
};
class XADDON: ADDON {};
class XADDON: ADDON {
units[] = {};
weapons[] = {};
};
};
#include "ACE_Settings.hpp"

View File

@ -17,7 +17,10 @@ class CfgPatches {
VERSION_CONFIG;
};
class XADDON: ADDON {};
class XADDON: ADDON {
units[] = {};
weapons[] = {};
};
};
#include "CfgEventHandlers.hpp"

View File

@ -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 {

View File

@ -13,7 +13,10 @@ class CfgPatches {
VERSION_CONFIG;
};
class XADDON: ADDON {};
class XADDON: ADDON {
units[] = {};
weapons[] = {};
};
};
#include "ACE_Settings.hpp"

View File

@ -13,7 +13,10 @@ class CfgPatches {
VERSION_CONFIG;
};
class XADDON: ADDON {};
class XADDON: ADDON {
units[] = {};
weapons[] = {};
};
};
#include "CfgEventHandlers.hpp"