Switching back to ASC for slot ordering.

This commit is contained in:
2023-05-01 14:59:24 -04:00
parent 1582d36222
commit c1c660fd53
@@ -24,7 +24,7 @@ public class dbBuildingLocationHandler extends dbHandlerBase {
prepareCallable("select * from static_building_location " + prepareCallable("select * from static_building_location " +
"where type = 6 or type = 8 " + "where type = 6 or type = 8 " +
"GROUP BY buildingID, slot " + "GROUP BY buildingID, slot " +
"ORDER BY buildingID, slot DESC;"); "ORDER BY buildingID, slot ASC;");
return getObjectList(); return getObjectList();
} }