diff --git a/Engine/src/live/GibletEntity.ts b/Engine/src/live/GibletEntity.ts index f530e0c..d73b358 100644 --- a/Engine/src/live/GibletEntity.ts +++ b/Engine/src/live/GibletEntity.ts @@ -17,8 +17,8 @@ export class GibletEntity extends Entity { super.update(delta) this.elapsed += delta - this.velocity[0] *= 0.85 - this.velocity[1] *= 0.85 + this.velocity[0] *= 0.80 + this.velocity[1] *= 0.80 // Eh... let's manually handle velocity this.x += this.velocity[0]