1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 12:57:36 +08:00

Renamed TaikoModFlip to TaikoModSwap

This commit is contained in:
Henry Lin 2021-05-17 11:04:01 +08:00
parent c4ae70a827
commit f34637ea9c
3 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@ namespace osu.Game.Rulesets.Taiko.Mods
public class TaikoModRandom : ModRandom, IApplicableToBeatmap public class TaikoModRandom : ModRandom, IApplicableToBeatmap
{ {
public override string Description => @"Shuffle around the colours!"; public override string Description => @"Shuffle around the colours!";
public override Type[] IncompatibleMods => base.IncompatibleMods.Append(typeof(TaikoModFlip)).ToArray(); public override Type[] IncompatibleMods => base.IncompatibleMods.Append(typeof(TaikoModSwap)).ToArray();
public void ApplyToBeatmap(IBeatmap beatmap) public void ApplyToBeatmap(IBeatmap beatmap)
{ {

View File

@ -10,10 +10,10 @@ using osu.Game.Rulesets.Taiko.Objects;
namespace osu.Game.Rulesets.Taiko.Mods namespace osu.Game.Rulesets.Taiko.Mods
{ {
public class TaikoModFlip : Mod, IApplicableToBeatmap public class TaikoModSwap : Mod, IApplicableToBeatmap
{ {
public override string Name => "Flip"; public override string Name => "Swap";
public override string Acronym => "FP"; public override string Acronym => "SW";
public override string Description => @"Dons become kats, kats become dons"; public override string Description => @"Dons become kats, kats become dons";
public override ModType Type => ModType.Conversion; public override ModType Type => ModType.Conversion;
public override double ScoreMultiplier => 1; public override double ScoreMultiplier => 1;

View File

@ -136,7 +136,7 @@ namespace osu.Game.Rulesets.Taiko
new TaikoModRandom(), new TaikoModRandom(),
new TaikoModDifficultyAdjust(), new TaikoModDifficultyAdjust(),
new TaikoModClassic(), new TaikoModClassic(),
new TaikoModFlip(), new TaikoModSwap(),
}; };
case ModType.Automation: case ModType.Automation: