X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fserver%2Fweapons%2Fthrowing.qc;h=411ab92bede55ee3725f571e17df0889bd1618ec;hp=552f0355789bd91771f9b710103f01de5154d5aa;hb=845401fd312c66c059aaee1772ac5d79555ab4fc;hpb=6c4f62990980e74d4a0963b7179c7c964f535398 diff --git a/qcsrc/server/weapons/throwing.qc b/qcsrc/server/weapons/throwing.qc index 552f035578..411ab92bed 100644 --- a/qcsrc/server/weapons/throwing.qc +++ b/qcsrc/server/weapons/throwing.qc @@ -73,7 +73,7 @@ string W_ThrowNewWeapon(entity own, float wpn, float doreduce, vector org, vecto wep.think = thrown_wep_think; wep.savenextthink = wep.nextthink; wep.nextthink = min(wep.nextthink, time + 0.5); - wep.pickup_anyway = TRUE; // these are ALWAYS pickable + wep.pickup_anyway = true; // these are ALWAYS pickable //wa = W_AmmoItemCode(wpn); if(ammotype == ammo_none) @@ -185,5 +185,5 @@ void SpawnThrownWeapon(vector org, float w) { if(self.weapons & WepSet_FromWeapon(self.weapon)) if(W_IsWeaponThrowable(self.weapon)) - W_ThrowNewWeapon(self, self.weapon, FALSE, org, randomvec() * 125 + '0 0 200'); + W_ThrowNewWeapon(self, self.weapon, false, org, randomvec() * 125 + '0 0 200'); }