1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-02 23:41:00 +08:00

Renamed TaikoModFlip to TaikoModSwap

This commit is contained in:
Henry Lin
2021-05-17 11:04:01 +08:00
Unverified
parent c4ae70a827
commit f34637ea9c
3 changed files with 5 additions and 5 deletions
@@ -14,7 +14,7 @@ namespace osu.Game.Rulesets.Taiko.Mods
public class TaikoModRandom : ModRandom, IApplicableToBeatmap
{
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)
{
@@ -10,10 +10,10 @@ using osu.Game.Rulesets.Taiko.Objects;
namespace osu.Game.Rulesets.Taiko.Mods
{
public class TaikoModFlip : Mod, IApplicableToBeatmap
public class TaikoModSwap : Mod, IApplicableToBeatmap
{
public override string Name => "Flip";
public override string Acronym => "FP";
public override string Name => "Swap";
public override string Acronym => "SW";
public override string Description => @"Dons become kats, kats become dons";
public override ModType Type => ModType.Conversion;
public override double ScoreMultiplier => 1;
+1 -1
View File
@@ -136,7 +136,7 @@ namespace osu.Game.Rulesets.Taiko
new TaikoModRandom(),
new TaikoModDifficultyAdjust(),
new TaikoModClassic(),
new TaikoModFlip(),
new TaikoModSwap(),
};
case ModType.Automation: