Switching to desc for slot ordering.

This commit is contained in:
2023-05-01 14:54:02 -04:00
parent 11bcd26027
commit 1582d36222
@@ -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 ASC;"); "ORDER BY buildingID, slot DESC;");
return getObjectList(); return getObjectList();
} }