Browse Source

Switching to desc for slot ordering.

master
MagicBot 2 years ago
parent
commit
1582d36222
  1. 2
      src/engine/db/handlers/dbBuildingLocationHandler.java

2
src/engine/db/handlers/dbBuildingLocationHandler.java

@ -24,7 +24,7 @@ public class dbBuildingLocationHandler extends dbHandlerBase { @@ -24,7 +24,7 @@ public class dbBuildingLocationHandler extends dbHandlerBase {
prepareCallable("select * from static_building_location " +
"where type = 6 or type = 8 " +
"GROUP BY buildingID, slot " +
"ORDER BY buildingID, slot ASC;");
"ORDER BY buildingID, slot DESC;");
return getObjectList();
}

Loading…
Cancel
Save