]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/weapons/throwing.qc
Remove "if not"
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / weapons / throwing.qc
index 19e25a4d82c9046f16e57499fff62edf222c8e26..9559ae8f8b80b9082be07c29031f00cba6207f6c 100644 (file)
@@ -191,6 +191,6 @@ void W_ThrowWeapon(vector velo, vector delta, float doreduce)
        W_SwitchWeapon_Force(self, w_getbestweapon(self));
        a = W_ThrowNewWeapon(self, w, doreduce, self.origin + delta, velo);
        
-       if not(a) return;
+       if(!a) return;
        Send_Notification(NOTIF_ONE, self, MSG_MULTI, ITEM_WEAPON_DROP, a, w);
 }