From 92267c8bb3ba11ae9bb16145c053bd4a5e81ea30 Mon Sep 17 00:00:00 2001 From: Dan Balasescu Date: Thu, 17 Apr 2025 18:32:35 +0900 Subject: [PATCH] Improve `IMod` documentation --- osu.Game/Rulesets/Mods/IMod.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osu.Game/Rulesets/Mods/IMod.cs b/osu.Game/Rulesets/Mods/IMod.cs index 75d2d699ad..5d4cc5fd12 100644 --- a/osu.Game/Rulesets/Mods/IMod.cs +++ b/osu.Game/Rulesets/Mods/IMod.cs @@ -42,7 +42,7 @@ namespace osu.Game.Rulesets.Mods IconUsage? Icon { get; } /// - /// Whether this mod is playable by an end user. + /// Whether this mod is playable by a real human user. /// Should be false for cases where the user is not interacting with the game (so it can be excluded from multiplayer selection, for example). /// bool UserPlayable { get; } @@ -54,7 +54,7 @@ namespace osu.Game.Rulesets.Mods bool ValidForMultiplayer { get; } /// - /// Whether this mod is valid as a required mod on freestyle online play items. + /// Whether this mod is valid as a required mod when freestyle is enabled. /// Should be true for mods that are guaranteed to be implemented across all rulesets. /// bool ValidForFreestyleAsRequiredMod { get; }