Minor cosmetic updates.

This commit is contained in:
Storm Dragon
2025-09-08 18:03:05 -04:00
parent 2437e13604
commit 1d37a16f9e
3 changed files with 10 additions and 3 deletions

View File

@@ -258,7 +258,7 @@ class Enemy(Object):
self.level.levelScore += totalPoints
# Create a DeathSound object to play death sound at fixed position
from src.death_sound import DeathSound
from src.die_monster_die import DeathSound
deathSoundObj = DeathSound(self.xPos, self.yPos, self.enemyType, self.sounds)
self.level.objects.append(deathSoundObj)