1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-12 14:43:03 +08:00

Update description for Taiko Single Tap mod

This commit is contained in:
OpenSauce 2023-02-27 15:22:06 +00:00 committed by GitHub
parent 12a2037086
commit 25ef1f199d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ namespace osu.Game.Rulesets.Taiko.Mods
{
public override string Name => @"Single Tap";
public override string Acronym => @"SG";
public override LocalisableString Description => @"You must only use one key!";
public override LocalisableString Description => @"One key for dons, one key for kats.";
protected override bool CheckValidNewAction(TaikoAction action) => LastAcceptedDonAction == null || LastAcceptedDonAction == action || LastAcceptedKatAction == null || LastAcceptedKatAction == action;
}