Skip to content

Commit

Permalink
Reduce ship floatyness (1.20x -> 1.10x when a held)
Browse files Browse the repository at this point in the history
  • Loading branch information
kandowontu committed Feb 24, 2025
1 parent b4cb87f commit c242c3d
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 @@ -10,8 +10,8 @@ void ship_movement(){
gravity_big = SHIP_GRAVITY;
gravity_mini = MINI_SHIP_GRAVITY;
if (controllingplayer->a || controllingplayer->up) {
gravity_big = (gravity_big / 5) * 6;
gravity_mini = (gravity_mini / 5) * 6;
gravity_big = (gravity_big / 10) * 11;
gravity_mini = (gravity_mini / 10) * 11;
}
common_gravity_routine();

Expand Down

0 comments on commit c242c3d

Please sign in to comment.