X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fserver%2Fweapons%2Fcommon.qc;h=5a5e30bf79c11c92cd217c5e006bf0d399a92c73;hp=db712933d0bd4c31359071ceb26c831de5e34104;hb=c51698509e174e343dff48128a1dcfff1527c535;hpb=18302817d7f0cb0ba74398200da5e400ffc1b9a4 diff --git a/qcsrc/server/weapons/common.qc b/qcsrc/server/weapons/common.qc index db712933d..5a5e30bf7 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/deathtypes/all.qh" #include "../../common/notifications.qh" #include "../../common/util.qh" #include "../../common/weapons/all.qh" +#include "../../common/items/all.qc" void W_GiveWeapon (entity e, float wep) {SELFPARAM(); @@ -30,7 +30,7 @@ void W_PlayStrengthSound(entity player) // void W_PlayStrengthSound && ((time > player.prevstrengthsound + autocvar_sv_strengthsound_antispam_time) // prevent insane sound spam || (time > player.prevstrengthsoundattempt + autocvar_sv_strengthsound_antispam_refire_threshold))) { - sound(player, CH_TRIGGER, W_Sound("strength_fire"), VOL_BASE, ATTEN_NORM); + sound(player, CH_TRIGGER, SND_STRENGTH_FIRE, VOL_BASE, ATTEN_NORM); player.prevstrengthsound = time; } player.prevstrengthsoundattempt = time; @@ -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);