Skip to content

Commit

Permalink
Fix broken query
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Balasescu authored and Dan Balasescu committed Sep 24, 2023
1 parent 729380a commit 2bc64bd
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 2bc64bd

Please sign in to comment.