1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-27 06:29:54 +08:00

Add new checks to verifiers

This commit is contained in:
Naxess
2021-07-13 10:53:25 +02:00
Unverified
parent 53c0298b5e
commit 3a5912e35e
2 changed files with 5 additions and 2 deletions
@@ -15,10 +15,12 @@ namespace osu.Game.Rulesets.Osu.Edit
{
// Compose
new CheckOffscreenObjects(),
new CheckTooShortSpinners(),
// Spread
new CheckTimeDistanceEquality(),
new CheckLowDiffOverlaps()
new CheckLowDiffOverlaps(),
new CheckTooShortSliders(),
};
public IEnumerable<Issue> Run(BeatmapVerifierContext context)
+2 -1
View File
@@ -27,7 +27,8 @@ namespace osu.Game.Rulesets.Edit
// Compose
new CheckUnsnappedObjects(),
new CheckConcurrentObjects()
new CheckConcurrentObjects(),
new CheckZeroLengthObjects(),
};
public IEnumerable<Issue> Run(BeatmapVerifierContext context)