X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fserver%2Fweapons%2Fcommon.qc;h=85e8820f38c9dc21cc15f4ff3fe8581357af8576;hp=f1720757f6607564db7f1a89083570178afac39b;hb=6e7fae90a84673482a986aa83a6b618fb23c7eb5;hpb=c6437cd43edc4489ad69746a30b5532f18c1af74 diff --git a/qcsrc/server/weapons/common.qc b/qcsrc/server/weapons/common.qc index f1720757f..85e8820f3 100644 --- a/qcsrc/server/weapons/common.qc +++ b/qcsrc/server/weapons/common.qc @@ -1,12 +1,12 @@ #include "common.qh" -#include "../_all.qh" -#include "../t_items.qh" -#include "../../common/constants.qh" -#include "../../common/deathtypes.qh" -#include "../../common/notifications.qh" -#include "../../common/util.qh" -#include "../../common/weapons/all.qh" +#include +#include +#include +#include +#include +#include +#include void W_GiveWeapon (entity e, float wep) {SELFPARAM(); @@ -14,7 +14,7 @@ void W_GiveWeapon (entity e, float wep) if (!wep) return; - e.weapons |= WepSet_FromWeapon(wep); + e.weapons |= WepSet_FromWeapon(Weapons_from(wep)); setself(e); @@ -38,7 +38,7 @@ void W_PlayStrengthSound(entity player) // void W_PlayStrengthSound float W_CheckProjectileDamage(entity inflictor, entity projowner, int deathtype, float exception) { - float is_from_contents = (deathtype == DEATH_SLIME || deathtype == DEATH_LAVA); + float is_from_contents = (deathtype == DEATH_SLIME.m_id || deathtype == DEATH_LAVA.m_id); float is_from_owner = (inflictor == projowner); float is_from_exception = (exception != -1); @@ -89,6 +89,8 @@ void W_PrepareExplosionByDamage(entity attacker, void() explode) self.realowner = attacker; } + MUTATOR_CALLHOOK(PrepareExplosionByDamage, self, attacker); + // do not explode NOW but in the NEXT FRAME! // because recursive calls to RadiusDamage are not allowed self.nextthink = time;