mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
Throw instead of returning zero
This commit is contained in:
parent
2ab4a7293e
commit
e61a90d469
@ -29,7 +29,7 @@ namespace osu.Game.Utils
|
||||
if (type.GetField(i.ToString()).GetCustomAttributes(typeof(OrderAttribute), false).FirstOrDefault() is OrderAttribute attr)
|
||||
return attr.Order;
|
||||
|
||||
return 0;
|
||||
throw new ArgumentException($"Not all values of {nameof(T)} have {nameof(OrderAttribute)} specified.");
|
||||
});
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user