mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-12-06 03:30:22 -08:00
Fix Bowser not disabling flame generators (#648)
This commit is contained in:
parent
f04b20e5b8
commit
d372ff4840
1 changed files with 1 additions and 2 deletions
|
|
@ -130,8 +130,7 @@ func fireball_hit() -> void:
|
|||
func play_music() -> void:
|
||||
for i: EntityGenerator in get_tree().get_nodes_in_group("EntityGenerators"):
|
||||
if i.entity_scene != null:
|
||||
if i.entity_scene.resource_path == "res://Scenes/
|
||||
Prefabs/Entities/Enemies/BowserFlame.tscn":
|
||||
if i.entity_scene.resource_path == "res://Scenes/Prefabs/Entities/Enemies/BowserFlame.tscn":
|
||||
i.queue_free()
|
||||
if Settings.file.audio.extra_bgm == 0: return
|
||||
if Global.level_editor != null:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue