IsListModifier should be available to plugins

This commit is contained in:
Goodlyay 2024-02-03 13:31:24 -08:00
parent 450dfa1181
commit 389910868a

View File

@ -79,7 +79,7 @@ namespace MCGalaxy
}
protected static bool IsListModifier(string str) {
public static bool IsListModifier(string str) {
int ignored;
return str.CaselessEq("all") || NumberUtils.TryParseInt32(str, out ignored);
}