Suggested changes

This commit is contained in:
MrTheMake 2017-08-13 22:37:39 +02:00
parent 2f89fc432b
commit e54f659916
3 changed files with 4 additions and 3 deletions

View File

@ -149,7 +149,7 @@ public class ManiaModKey9 : ManiaKeyMod
public class ManiaModKeyCoop : Mod
{
public override string Name => "KeyCoop";
public override string ShortenedName => "CO";
public override string ShortenedName => "2P";
public override string Description => @"Double the key amount, double the fun!";
public override double ScoreMultiplier => 1;
public override bool Ranked => true;

View File

@ -36,7 +36,7 @@ public IEnumerable<Mod> GetAllMods()
return new[] { mod };
}));
return modList.ToArray();
return modList;
}
public abstract IEnumerable<Mod> GetModsFor(ModType type);

View File

@ -30,7 +30,8 @@ public class Score
private string[] modStrings;
[JsonProperty(@"mods")]
protected string[] ModStrings {
protected string[] ModStrings
{
get { return modStrings; }
set
{