Change "single tap" mod acronym to not conflict with "strict tracking"

This commit is contained in:
Dean Herbert 2022-07-16 17:07:55 +09:00
parent acd5254f51
commit b93b6ba2ca
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ namespace osu.Game.Rulesets.Osu.Mods
public class OsuModSingleTap : InputBlockingMod
{
public override string Name => @"Single Tap";
public override string Acronym => @"ST";
public override string Acronym => @"SG";
public override string Description => @"You must only use one key!";
public override Type[] IncompatibleMods => base.IncompatibleMods.Concat(new[] { typeof(OsuModAlternate) }).ToArray();