Skip to content
This repository was archived by the owner on Jan 5, 2024. It is now read-only.

Commit 229ffee

Browse files
committed
Fix bullshit difficulty text logic
1 parent 71742ce commit 229ffee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Entities/Activity.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ void Activity::Clear() {
632632
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
633633

634634
std::string Activity::GetDifficultyString(int difficulty) {
635-
if (difficulty < DifficultySetting::CakeDifficulty) {
635+
if (difficulty <= DifficultySetting::CakeDifficulty) {
636636
return "Cake";
637637
} else if (difficulty <= DifficultySetting::EasyDifficulty) {
638638
return "Easy";

0 commit comments

Comments
 (0)