Skip to content

Commit

Permalink
Temporarily disable broken mods
Browse files Browse the repository at this point in the history
Not gonna be fixing these for now.
  • Loading branch information
LumpBloom7 committed Sep 3, 2020
1 parent 00006b0 commit 2e63593
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions osu.Game.Rulesets.Sentakki/Mods/SentakkiModFadeIn.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ public class SentakkiModFadeIn : Mod, IApplicableToDrawableHitObjects
public override double ScoreMultiplier => 1.06;
public override bool Ranked => true;

public override bool HasImplementation => false;

public void ApplyToDrawableHitObjects(IEnumerable<DrawableHitObject> drawables)
{
foreach (var d in drawables.OfType<DrawableSentakkiHitObject>())
Expand Down
2 changes: 2 additions & 0 deletions osu.Game.Rulesets.Sentakki/Mods/SentakkiModHardRock.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ public class SentakkiModHardRock : ModHardRock, IApplicableToDrawableHitObjects
public override double ScoreMultiplier => 1.06;
public override bool Ranked => true;

public override bool HasImplementation => false;

public void ApplyToDrawableHitObjects(IEnumerable<DrawableHitObject> drawables)
{
foreach (var d in drawables.OfType<DrawableSentakkiHitObject>())
Expand Down
2 changes: 2 additions & 0 deletions osu.Game.Rulesets.Sentakki/Mods/SentakkiModHidden.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ public class SentakkiModHidden : ModHidden
public override string Description => @"Play with fading notes.";
public override double ScoreMultiplier => 1.06;

public override bool HasImplementation => false;

public override void ApplyToDrawableHitObjects(IEnumerable<DrawableHitObject> drawables)
{
foreach (var d in drawables.OfType<DrawableSentakkiHitObject>())
Expand Down

0 comments on commit 2e63593

Please sign in to comment.