Skip to content

Commit

Permalink
Merge pull request #19084 from ggliv/fix-rp-rx
Browse files Browse the repository at this point in the history
Fix mod incompatibility between repel and relax
  • Loading branch information
peppy authored Jul 12, 2022
2 parents 41c2263 + b96734e commit 6cf94b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Osu/Mods/OsuModRelax.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ namespace osu.Game.Rulesets.Osu.Mods
public class OsuModRelax : ModRelax, IUpdatableByPlayfield, IApplicableToDrawableRuleset<OsuHitObject>, IApplicableToPlayer
{
public override string Description => @"You don't need to click. Give your clicking/tapping fingers a break from the heat of things.";
public override Type[] IncompatibleMods => base.IncompatibleMods.Concat(new[] { typeof(OsuModAutopilot), typeof(OsuModMagnetised), typeof(OsuModRepel), typeof(OsuModAlternate) }).ToArray();
public override Type[] IncompatibleMods => base.IncompatibleMods.Concat(new[] { typeof(OsuModAutopilot), typeof(OsuModMagnetised), typeof(OsuModAlternate) }).ToArray();

/// <summary>
/// How early before a hitobject's start time to trigger a hit.
Expand Down

0 comments on commit 6cf94b7

Please sign in to comment.