Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
Joalor64GH authored Oct 19, 2024
1 parent bd60c27 commit 15a9765
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion source/states/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ class PlayState extends ExtendableState {
accuracy = 100;
}

function generateRank() {
function generateRank():String {
var rankConditions:Array<Bool> = [
accuracy >= 100, // P
accuracy >= 95, // S
Expand Down Expand Up @@ -641,6 +641,8 @@ class PlayState extends ExtendableState {

if (accuracy == 0 || SaveData.settings.botPlay)
rank = "?";

return rank;
}

function checkForAchievement(achs:Array<String> = null):String {
Expand Down

0 comments on commit 15a9765

Please sign in to comment.