Skip to content
This repository has been archived by the owner on Sep 30, 2019. It is now read-only.

Commit

Permalink
Added .zip (and .beat) support. Added support for packaged songs in b…
Browse files Browse the repository at this point in the history
…oth .zips and regular folders. Improved startup load time significantly. Fixed bug where level difficulty was not correct 100% of the time. Made it ignore duplicate songs.
  • Loading branch information
xyonico committed May 10, 2018
1 parent 764b699 commit f627fdf
Show file tree
Hide file tree
Showing 6 changed files with 648 additions and 62 deletions.
2 changes: 1 addition & 1 deletion SongLoaderPlugin/CustomSongInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public string GetIdentifier()
combinedJson += diffLevel.json;
}

var hash = Utils.CreateMD5(combinedJson);
var hash = Utils.CreateMD5FromString(combinedJson);
levelId = hash + "" + string.Join("", new[] {songName, songSubName, authorName, beatsPerMinute.ToString()}) + "";
return levelId;
}
Expand Down
Loading

0 comments on commit f627fdf

Please # to comment.