mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-10-23 07:58:09 +00:00
ok, figured out what it was, it was some -1 checks i forgot to do, NOW its sound
This commit is contained in:
@@ -355,6 +355,7 @@ func check_for_medal_achievement() -> void:
|
|||||||
level += 1
|
level += 1
|
||||||
world += 1
|
world += 1
|
||||||
|
|
||||||
|
if marathon_best_any_time >= 0 and marathon_best_warpless_time >= 0:
|
||||||
if marathon_best_any_time <= GOLD_ANY_TIMES[Global.current_campaign] and marathon_best_warpless_time <= GOLD_WARPLESS_TIMES[Global.current_campaign]:
|
if marathon_best_any_time <= GOLD_ANY_TIMES[Global.current_campaign] and marathon_best_warpless_time <= GOLD_WARPLESS_TIMES[Global.current_campaign]:
|
||||||
has_gold_full = true
|
has_gold_full = true
|
||||||
if marathon_best_any_time <= GOLD_ANY_TIMES[Global.current_campaign] * MEDAL_CONVERSIONS[1] and marathon_best_warpless_time <= GOLD_WARPLESS_TIMES[Global.current_campaign] * MEDAL_CONVERSIONS[1]:
|
if marathon_best_any_time <= GOLD_ANY_TIMES[Global.current_campaign] * MEDAL_CONVERSIONS[1] and marathon_best_warpless_time <= GOLD_WARPLESS_TIMES[Global.current_campaign] * MEDAL_CONVERSIONS[1]:
|
||||||
|
Reference in New Issue
Block a user