certain sortopions (or lack thereof) in ParserPower functions are causing sorts to fail
See https://terraria.gamepedia.com/User:OOeyes/ParserPower for "unit tests" that are failing.
When using sorts with patterns and templates, as in the top three examples, the "alpha" option must be specified, as "numeric" (which is default) fails to sort. Additionally, using the "desc" option at all for descending sorts fail in all cases.
For simpler sorts, all uses of "desc" cause the sorts to fail unless also specifying the "cs" (case-sensitive) option.
I think this is happening because the ParserPower namespace has not been added to https://gitlab.com/hydrawiki/extensions/ParserPower/-/blob/master/includes/ParserPowerLists.php#L1526 and within the getComparer function at https://gitlab.com/hydrawiki/extensions/ParserPower/-/blob/master/includes/ParserPowerSortKeyValueComparer.php#L78
These problems do not appear in earlier versions where this namespace hasn't be added, and I haven't found any other meaningful changes in the code that could be responsible.