boxshroud fixes
This commit is contained in:
@@ -354,7 +354,11 @@ public class dbItemHandler extends dbHandlerBase {
|
|||||||
ResultSet rs = preparedStatement.executeQuery();
|
ResultSet rs = preparedStatement.executeQuery();
|
||||||
|
|
||||||
if (rs.next())
|
if (rs.next())
|
||||||
worked = rs.getBoolean("result");
|
try {
|
||||||
|
worked = rs.getBoolean("result");
|
||||||
|
} catch(Exception e){
|
||||||
|
worked = true;
|
||||||
|
}
|
||||||
|
|
||||||
} catch (SQLException e) {
|
} catch (SQLException e) {
|
||||||
Logger.error(e);
|
Logger.error(e);
|
||||||
|
|||||||
@@ -4829,6 +4829,7 @@ public class PlayerCharacter extends AbstractCharacter {
|
|||||||
if (pc.isBoxed == true)
|
if (pc.isBoxed == true)
|
||||||
continue;
|
continue;
|
||||||
this.isBoxed = true;
|
this.isBoxed = true;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user