mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 08:27:49 +08:00
Merge branch 'taiko-don' of https://github.com/Craftplacer/osu into taiko-don
This commit is contained in:
commit
6de6f068fd
@ -82,7 +82,7 @@ namespace osu.Game.Rulesets.Taiko.UI
|
||||
return failDrawable;
|
||||
|
||||
default:
|
||||
throw new ArgumentException($"There's no case for animation state ${state} available", nameof(state));
|
||||
throw new ArgumentOutOfRangeException(nameof(state), $"There's no animation available for state {state}");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -102,7 +102,7 @@ namespace osu.Game.Rulesets.Taiko.UI
|
||||
return "kiai";
|
||||
|
||||
default:
|
||||
throw new ArgumentException($"There's no case for animation state ${state} available", nameof(state));
|
||||
throw new ArgumentOutOfRangeException(nameof(state), $"There's no case for animation state {state} available");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user