mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Fix first object not receiving new combo
Note: If a normal catch fruit is the first object, it does not receive a new combo...
This commit is contained in:
@ -33,7 +33,7 @@ namespace osu.Game.Rulesets.Objects.Legacy.Catch
|
||||
return new ConvertSlider
|
||||
{
|
||||
X = position.X,
|
||||
NewCombo = newCombo,
|
||||
NewCombo = FirstObject || newCombo,
|
||||
ComboOffset = comboOffset,
|
||||
ControlPoints = controlPoints,
|
||||
Distance = length,
|
||||
@ -48,6 +48,7 @@ namespace osu.Game.Rulesets.Objects.Legacy.Catch
|
||||
return new ConvertSpinner
|
||||
{
|
||||
EndTime = endTime,
|
||||
NewCombo = FirstObject || newCombo,
|
||||
ComboOffset = comboOffset
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user