Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
kandowontu committed Feb 21, 2025
1 parent 3e2eddb commit 9ebaf97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SAUCE/gamemodes/gamemode_ship.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ void ship_movement(){
gravity_big = SHIP_GRAVITY;
gravity_mini = MINI_SHIP_GRAVITY;
if (controllingplayer->a || controllingplayer->up) {
gravity_big = gravity_big / 4 * 5;
gravity_mini = gravity_mini / 4 * 5;
gravity_big = (gravity_big / 4) * 5;
gravity_mini = (gravity_mini / 4) * 5;
}
common_gravity_routine();

Expand Down

0 comments on commit 9ebaf97

Please sign in to comment.