Merge pull request #51 in MIN/mineplex from clans_custom_gear to clans-beta

* commit '138a4cf6380316ff60ca9d51defcd1a72f18449a':
  Fix bug where transferring a clan to destination server would not load properly server-side.
This commit is contained in:
Ty Sayers 2015-08-29 19:43:31 -05:00
commit 8c509c5bd1
2 changed files with 18 additions and 21 deletions

View File

@ -172,8 +172,6 @@ public class ClanRepository extends RepositoryBase
{
@Override
public void processResultSet(ResultSet resultSet) throws SQLException
{
if (resultSet.next())
{
if (resultSet.next())
{
@ -194,7 +192,6 @@ public class ClanRepository extends RepositoryBase
clan.LastOnline = resultSet.getTimestamp(15);
}
}
}
}, new ColumnVarChar("name", 100, clanName.toLowerCase()));
executeQuery(RETRIEVE_CLAN_MEMBERS, new ResultSetCallable()