]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/weapons/weapon/hagar.qc
Kill off some now useless WITHSELF cases
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / weapons / weapon / hagar.qc
index 7914c6b798c34c6c9a6e7f90cd2118fc2763a012..433ceefe2958fedc3a003e921deac6813a03988e 100644 (file)
@@ -73,7 +73,7 @@ void W_Hagar_Explode(entity this)
 
 void W_Hagar_Explode_use(entity this, entity actor, entity trigger)
 {
-       WITHSELF(this, W_Hagar_Explode(this));
+       W_Hagar_Explode(this);
 }
 
 void W_Hagar_Explode2(entity this)
@@ -86,7 +86,7 @@ void W_Hagar_Explode2(entity this)
 
 void W_Hagar_Explode2_use(entity this, entity actor, entity trigger)
 {
-       WITHSELF(this, W_Hagar_Explode2(this));
+       W_Hagar_Explode2(this);
 }
 
 void W_Hagar_Damage(entity this, entity inflictor, entity attacker, float damage, int deathtype, vector hitloc, vector force)