Removed unused function

This commit is contained in:
MrTheMake 2017-08-13 20:28:30 +02:00
parent 81289db33b
commit 2f89fc432b
1 changed files with 0 additions and 5 deletions

View File

@ -41,11 +41,6 @@ public IEnumerable<Mod> GetAllMods()
public abstract IEnumerable<Mod> GetModsFor(ModType type);
public Mod GetModByShortenedName(string shortenedName)
{
return GetAllMods().First(mod => mod.ShortenedName == shortenedName);
}
public Mod GetAutoplayMod() => GetAllMods().First(mod => mod is ModAutoplay);
protected Ruleset(RulesetInfo rulesetInfo)