diff --git a/scenes/game_systems.c b/scenes/game_systems.c index 4fc0b49..ebd56a1 100644 --- a/scenes/game_systems.c +++ b/scenes/game_systems.c @@ -20,7 +20,7 @@ void floating_particle_system_update(Particle_t* part, void* user_data, float de bool check_in_water(const ParticleEmitter_t* emitter, float delta_time); static const Vector2 GRAVITY = {0, GRAV_ACCEL}; -static const Vector2 UPTHRUST = {0, -GRAV_ACCEL * 1.15}; +static const Vector2 UPTHRUST = {0, -GRAV_ACCEL * 1.25}; static inline unsigned int get_tile_idx(int x, int y, TileGrid_t gridmap) {