mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-12-05 19:20:19 -08:00
Adds alternate check for coin heaven variation
This commit is contained in:
parent
33d3b080d4
commit
e94cb2d837
1 changed files with 4 additions and 1 deletions
|
|
@ -126,7 +126,10 @@ func update_theme() -> void:
|
|||
if Global.current_campaign == "SMBANN":
|
||||
theme_time = "Night"
|
||||
ResourceSetterNew.cache.clear()
|
||||
Global.current_room = get_room_type()
|
||||
if self is CoinHeaven:
|
||||
Global.current_room = Global.Room.COIN_HEAVEN
|
||||
else:
|
||||
Global.current_room = get_room_type()
|
||||
Global.current_campaign = campaign
|
||||
Global.level_theme = theme
|
||||
Global.theme_time = theme_time
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue