X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fcommon%2Fweapons%2Fweapon%2Fmortar.qc;fp=qcsrc%2Fcommon%2Fweapons%2Fweapon%2Fmortar.qc;h=2152accff03f070d74a8875d4ad8b01e9cfd3dee;hp=52b8a571a51eb34e0265bf7fb52a3d0676e57a57;hb=99c3e6da047827e29ecd320cc39215ae3a951637;hpb=7e3cca2b4387ff0e79b81d4fc54bfd589e73747a diff --git a/qcsrc/common/weapons/weapon/mortar.qc b/qcsrc/common/weapons/weapon/mortar.qc index 52b8a571a5..2152accff0 100644 --- a/qcsrc/common/weapons/weapon/mortar.qc +++ b/qcsrc/common/weapons/weapon/mortar.qc @@ -358,9 +358,7 @@ METHOD(Mortar, wr_killmessage, Notification(entity thiswep)) METHOD(Mortar, wr_impacteffect, void(entity thiswep, entity actor)) { - vector org2; - org2 = w_org + w_backoff * 12; - pointparticles(EFFECT_GRENADE_EXPLODE, org2, '0 0 0', 1); + pointparticles(EFFECT_GRENADE_EXPLODE, w_org + w_backoff, '0 0 0', 1); if(!w_issilent) sound(actor, CH_SHOTS, SND_GRENADE_IMPACT, VOL_BASE, ATTN_NORM); }