X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fweapons%2Fcommon.qc;h=90aca172cc83f600e77c7d19e6a52405e7222547;hb=52cdd440f6cfdc9544099ac68455e5361ace00d2;hp=fb57d92774d01657e5c4e98228a7175f8efe6252;hpb=29ba411594428929a9e9a0e0baa620210213bec7;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/weapons/common.qc b/qcsrc/server/weapons/common.qc index fb57d9277..90aca172c 100644 --- a/qcsrc/server/weapons/common.qc +++ b/qcsrc/server/weapons/common.qc @@ -1,5 +1,7 @@ #include "common.qh" +#include +#include #include #include #include @@ -8,8 +10,22 @@ #include #include #include +#include #include +bool W_DualWielding(entity player) +{ + int held_weapons = 0; + for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot) + { + .entity weaponentity = weaponentities[slot]; + if(player.(weaponentity) && player.(weaponentity).m_switchweapon != WEP_Null) + ++held_weapons; + } + + return held_weapons > 1; +} + void W_GiveWeapon(entity e, int wep) { if (!wep) return; @@ -82,14 +98,14 @@ void W_PrepareExplosionByDamage(entity this, entity attacker, void(entity this) this.takedamage = DAMAGE_NO; this.event_damage = func_null; + MUTATOR_CALLHOOK(PrepareExplosionByDamage, this, attacker); + if(IS_CLIENT(attacker) && !autocvar_g_projectiles_keep_owner) { this.owner = attacker; this.realowner = attacker; } - MUTATOR_CALLHOOK(PrepareExplosionByDamage, this, attacker); - // do not explode NOW but in the NEXT FRAME! // because recursive calls to RadiusDamage are not allowed this.nextthink = time;