mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
Further support for null judgements.
This commit is contained in:
@ -106,6 +106,9 @@ namespace osu.Game.Rulesets.Objects.Drawables
|
||||
/// <returns>Whether a hit was processed.</returns>
|
||||
protected bool UpdateJudgement(bool userTriggered)
|
||||
{
|
||||
if (Judgement == null)
|
||||
return false;
|
||||
|
||||
var partial = Judgement as IPartialJudgement;
|
||||
|
||||
// Never re-process non-partial hits
|
||||
|
Reference in New Issue
Block a user