From eaea42f993b4854b3424850f0662bef7b6123ce3 Mon Sep 17 00:00:00 2001 From: Kistaro Windrider Date: Sat, 21 Jun 2025 17:38:05 -0700 Subject: [PATCH] fix shot axis --- vacuum_gambit.p8 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vacuum_gambit.p8 b/vacuum_gambit.p8 index 9438d2b..723369c 100644 --- a/vacuum_gambit.p8 +++ b/vacuum_gambit.p8 @@ -881,8 +881,8 @@ function gun_base:actually_shoot(x, y) -- shots from guns with -- widely varying angles) local m = munition.new{ - dx=sin(a)*v, - dy=cos(a)*v + dx=cos(a)*v, + dy=sin(a)*v } m:spawn_at(x+xo, y) end