Skip to content

Commit

Permalink
Correct an inconsistency from the new ring bonus calculations.
Browse files Browse the repository at this point in the history
Now both the Special Stages and Main Stages will both use the correct Ring Bonus calculations.
This will close #95 proper
  • Loading branch information
BlueSpeedsterYT committed Jun 20, 2024
1 parent b8529f5 commit 727dd38
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function special_level_go_to_score() {
objProgram.ss_perfect_bonus = 50000;
else
objProgram.ss_perfect_bonus = -1;
objProgram.ss_rings_bonus = objSSPlayer.rings*10;
objProgram.ss_rings_bonus = objSSPlayer.rings*100; // check objScoreCard to know this change

var time_bonus;
var total_time = objSSLevel.timer div 60;
Expand Down

0 comments on commit 727dd38

Please sign in to comment.