]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Significantly reduce the spin applied to casings
authorbones_was_here <bones_was_here@xonotic.au>
Sat, 24 Dec 2022 11:42:24 +0000 (21:42 +1000)
committerbones_was_here <bones_was_here@xonotic.au>
Sat, 24 Dec 2022 11:42:24 +0000 (21:42 +1000)
qcsrc/common/effects/qc/casings.qc

index 95e90a149c5e550b690e5901b574d71a4b887bd2..9ae565cd23ef68e3baa1614e830170401f71a751 100644 (file)
@@ -165,7 +165,7 @@ NET_HANDLE(casings, bool isNew)
     casing.draw = Casing_Draw;
     if (isNew) IL_PUSH(g_drawables, casing);
     casing.velocity += 2 * prandomvec();
-    casing.avelocity = '0 250 0' + 100 * prandomvec();
+    casing.avelocity = '0 10 0' + 100 * prandomvec();
     set_movetype(casing, MOVETYPE_BOUNCE);
     settouch(casing, Casing_Touch);
     casing.move_time = time;