Skip to content

Commit

Permalink
fix wrong var name in fer-static converter
Browse files Browse the repository at this point in the history
  • Loading branch information
GRIM657 committed Nov 21, 2023
1 parent ce87955 commit dffe496
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ export const ConverterIRFervidexStatic: ConverterFunction<
let { difficulty, playtype } = SplitFervidexChartRef(data.chart);

Check failure on line 16 in server/src/lib/score-import/import-types/ir/fervidex-static/converter.ts

View workflow job for this annotation

GitHub Actions / test

'playtype' is never reassigned. Use 'const' instead

//hack for scripted connection long support in older omnimixes
if(data.entry_id === 21201 && difficulty === "ANOTHER") {
data.entry_id = 12250;
if(data.song_id === 21201 && difficulty === "ANOTHER") {
data.song_id = 12250;
difficulty = "LEGGENDARIA";
}

Expand Down

0 comments on commit dffe496

Please sign in to comment.