X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fweapons%2Fcommon.qc;h=06615c4eac8575465aed85fe57cbe5181c423940;hb=aec48d76571bf181f87137bc2390cbce321127fa;hp=f69faa03a324de3e93d3136610a2835d9bbc781e;hpb=dbe33129e12ed79bcd09e4063157d5abfe1d9ea5;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/weapons/common.qc b/qcsrc/server/weapons/common.qc index f69faa03a..06615c4ea 100644 --- a/qcsrc/server/weapons/common.qc +++ b/qcsrc/server/weapons/common.qc @@ -10,13 +10,27 @@ #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; - e.weapons |= WepSet_FromWeapon(Weapons_from(wep)); + STAT(WEAPONS, e) |= WepSet_FromWeapon(Weapons_from(wep)); if (IS_PLAYER(e)) { Send_Notification(NOTIF_ONE, e, MSG_MULTI, ITEM_WEAPON_GOT, wep);