More than one row in result set is needed.
This commit is contained in:
@@ -35,7 +35,7 @@ public class dbRunegateHandler extends dbHandlerBase {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
ResultSet rs = executeQuery();
|
ResultSet rs = executeQuery();
|
||||||
if (rs.next()) {
|
while (rs.next()) {
|
||||||
gateList.add(rs.getInt("sourceBuilding"));
|
gateList.add(rs.getInt("sourceBuilding"));
|
||||||
}
|
}
|
||||||
} catch (SQLException e) {
|
} catch (SQLException e) {
|
||||||
@@ -56,7 +56,7 @@ public class dbRunegateHandler extends dbHandlerBase {
|
|||||||
try {
|
try {
|
||||||
ResultSet rs = executeQuery();
|
ResultSet rs = executeQuery();
|
||||||
|
|
||||||
if (rs.next()) {
|
while (rs.next()) {
|
||||||
int targetBuildingID = rs.getInt("sourceBuilding");
|
int targetBuildingID = rs.getInt("sourceBuilding");
|
||||||
Building targetBuilding = (Building) DbManager.getObject(Enum.GameObjectType.Building, targetBuildingID);
|
Building targetBuilding = (Building) DbManager.getObject(Enum.GameObjectType.Building, targetBuildingID);
|
||||||
Enum.PortalType portalType = Enum.PortalType.valueOf(rs.getString("portalType"));
|
Enum.PortalType portalType = Enum.PortalType.valueOf(rs.getString("portalType"));
|
||||||
|
|||||||
Reference in New Issue
Block a user