Skip to content

Commit e1e57b2

Browse files
Yoshis1000000LumpBloom7
authored andcommitted
Invert Mod Category Change: Fun -> Conversion
Changed the Mod Category of the Invert Mod from Fun to Conversion, to mirror Mania's placement of the Mod. The Mod Multiplier is still 1x for now.
1 parent 399b709 commit e1e57b2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

osu.Game.Rulesets.Hishigata/HishigataRuleset.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ public override IEnumerable<Mod> GetModsFor(ModType type)
6868
return new Mod[]
6969
{
7070
new HishigataModTrustworthy(),
71+
new HishigataModInvert(),
7172
};
7273

7374
case ModType.Fun:
7475
return new Mod[]
7576
{
7677
new MultiMod(new ModWindUp(), new ModWindDown()),
77-
new HishigataModInvert(),
7878
};
7979

8080
default:

osu.Game.Rulesets.Hishigata/Mods/HishigataModInvert.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class HishigataModInvert : Mod, IApplicableToHitObject
1515
public override string Acronym => "IN";
1616
public override LocalisableString Description => HishigataModInvertStrings.ModDescription;
1717
public override double ScoreMultiplier => 1.0;
18-
public override ModType Type => ModType.Fun;
18+
public override ModType Type => ModType.Conversion;
1919
public override Type[] IncompatibleMods => new[] { typeof(HishigataModTrustworthy) };
2020
public override IconUsage? Icon => OsuIcon.ModInvert;
2121

0 commit comments

Comments
 (0)