Hey there - not sure if this is the place to post something like this, but here I go:
It looks like the sorting on the tables in the wiki is done alphanumerically, which works fine for strings only containing characters from a-z / A-Z, but has problems when sorting (leading) numbers.
An example for this is sorting the Great Hammers overview table by weight: darksouls3 (dot) wikidot (dot) com/great-hammers/order/_weight/
The ordering goes as follows: 10.0 < 11.0 < 12.0 … < 24.0 < 6.0 < 8.0, although it obviously should be: 6.0 < 8.0 < 10.0 < …
Unfortunately, I have no idea how the sorting is done on this wiki, but my guess is… php? If so, using the natsort() function should solve the problem.
See: php (dot) net/manual/en/function (dot) natsort (dot) php , stackoverflow (dot) com/a/17714833/1673377
Another option would be the use Javascript to sort the tables, instead of the static link to another, pre-sorted page, like it is discussed here: community (dot) wikidot (dot) com/howto:sortable-tables-js
This would also make the wiki feel A LOT more responsive.
EDIT: looks like I'm not allowed to post links, so please forgive the (dot)s…