Skip to content

Commit

Permalink
Merge pull request #226 from smoogipoo/fix-max-combo-query
Browse files Browse the repository at this point in the history
Fix broken query
  • Loading branch information
peppy committed Sep 24, 2023
2 parents 729380a + 2bc64bd commit 0dd8afd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ private void computeDifficulty(int beatmapId, WorkingBeatmap beatmap, Ruleset ru
else
{
conn.Execute(
"UPDATE `osu_beatmaps` SET `difficultyrating` = @Diff, `diff_approach` = @AR, `diff_overall` = @OD, `diff_drain` = @HP, `diff_size` = @CS, `bpm` = @BPM , `max_combo` = @MaxCombo"
"UPDATE `osu_beatmaps` SET `difficultyrating` = @Diff, `diff_approach` = @AR, `diff_overall` = @OD, `diff_drain` = @HP, `diff_size` = @CS, `bpm` = @BPM , `max_combo` = @MaxCombo "
+ "WHERE `beatmap_id` = @BeatmapId",
param);
}
Expand Down

0 comments on commit 0dd8afd

Please sign in to comment.