Portal array list now filled at bootstrap.

This commit is contained in:
2023-02-15 12:29:38 -05:00
parent 2c0a46e652
commit eac2e3f42b
2 changed files with 11 additions and 1 deletions
@@ -31,7 +31,7 @@ public class dbRunegateHandler extends dbHandlerBase {
ArrayList<Integer> gateList = new ArrayList<>();
prepareCallable("SELECT DISTINCT `source_Building` FROM `static_runegate_portals`;");
prepareCallable("SELECT DISTINCT `sourceBuilding` FROM `static_runegate_portals`;");
try {
ResultSet rs = executeQuery();
+10
View File
@@ -74,11 +74,21 @@ public class Runegate {
Building gateBuilding = (Building) DbManager.getObject(Enum.GameObjectType.Building, gateID);
Runegate runegate = new Runegate(gateBuilding);
runegate.configurePortals();
_runegates.put(gateID, runegate);
}
}
public void configurePortals() {
ArrayList<Portal> portalList = DbManager.RunegateQueries.GET_PORTAL_LIST(this.gateBuilding.getObjectUUID());
for (Portal portal : portalList) {
this._portals[portal.portalType.ordinal()] = portal;
}
}
public void _serializeForEnterWorld(ByteBufferWriter writer) {
writer.putInt(gateBuilding.getObjectType().ordinal());