diff --git a/src/scenes/story/boss_fight.py b/src/scenes/story/boss_fight.py index 6f816e0..82ffa43 100644 --- a/src/scenes/story/boss_fight.py +++ b/src/scenes/story/boss_fight.py @@ -423,7 +423,7 @@ def __create_zone_attack(world: World, number: int = 2): ) yield animation.wait() entity.destroy() - world.new_entity().set(Sound(world[Assets].get_sound("zone"))) + world.new_entity().set(Sound(world[Assets].get_sound("zone"), volume=0.5)) for i in range(10): projectile = world.new_entity() @@ -468,6 +468,7 @@ def __create_zone_attack(world: World, number: int = 2): yield wait(1.75) for entity in world.query(ZoneAttack): entity.destroy() + world.new_entity().set(Sound(world[Assets].get_sound("zone"), volume=0.5)) for _z in range(2): for i in range(10): projectile = world.new_entity()