kellerkompanie / kellerkompanie-mods

This project contains modifications for the Arma 3 game, custom tailored towards the needs of the Kellerkompanie community (https://kellerkompanie.com/). Not all parts are self-written. Where indicated the content does not belong to us, but rather to the original authors. The rest may be used by anyone in any way.
MIT License
4 stars 1 forks source link

Recheck cwh regarding commy2's remark #111

Closed Schwaggot closed 5 years ago

Schwaggot commented 5 years ago

WeaponHolder and child classes inherit from Static, so don't have XEH. WeaponHolderSimulated and child classes inherit from ThingX and so don't have XEH either. Could be changed in CBA I suppose.

    class WeaponHolder: ReammoBox {
        XEH_ENABLED;
    };

    class WeaponHolderSimulated: ThingX {
        XEH_ENABLED;
    };

There.

Schwaggot commented 5 years ago

https://github.com/CBATeam/CBA_A3/pull/1228