Minimized XEH to ThingX config level

This commit is contained in:
jonpas 2015-09-27 02:13:32 +02:00
parent cd510c8ff7
commit ae07a71b0d
2 changed files with 7 additions and 2 deletions

View File

@ -18,7 +18,12 @@ class Extended_Init_EventHandlers {
init = QUOTE(_this call DFUNC(initPerson));
};
};
class All {
class StaticWeapon {
class ADDON {
init = QUOTE(_this call DFUNC(initObject));
};
};
class ThingX {
class ADDON {
init = QUOTE(_this call DFUNC(initObject));
};

View File

@ -20,7 +20,7 @@ class Extended_Killed_EventHandlers {
// Need initPost or there are problems with setVariable
class Extended_InitPost_EventHandlers {
class All {
class ThingX {
class ADDON {
init = QUOTE(_this call DFUNC(addSitActions))
};