diff --git a/scripts/Contents/Weapons/Pipe.gd b/scripts/Contents/Weapons/Pipe.gd index 3badbdd..eed72a2 100644 --- a/scripts/Contents/Weapons/Pipe.gd +++ b/scripts/Contents/Weapons/Pipe.gd @@ -16,5 +16,5 @@ func attack(entity: EntityBase): var e = charged(readStore("atk"), 0.1) bullet.baseDamage = e bullet.energy = e - bullet.speed = sqrt(e) + bullet.speed = clamp(e, 0, 30) return true