Browse Source

Switching back to ASC for slot ordering.

master
MagicBot 2 years ago
parent
commit
c1c660fd53
  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 DESC;");
"ORDER BY buildingID, slot ASC;");
return getObjectList();
}

Loading…
Cancel
Save