GArray<CropProcure> procure = new GArray<CropProcure>();
GArray<CropProcure> procureNext = new GArray<CropProcure>();
// restore seed production info
statement = con.prepareStatement(CASTLE_MANOR_LOAD_PRODUCTION);
statement.setInt(1, castle.getId());
rs = statement.executeQuery();
while(rs.next())
{
int seedId = rs.getInt("seed_id");
long canProduce = rs.getLong("can_produce");
long startProduce = rs.getLong("start_produce");