dont add extra place

This commit is contained in:
Tyler Murphy 2022-05-11 10:15:02 -04:00
parent 1b0f18cdf9
commit 469c7ee98a

View file

@ -193,7 +193,7 @@ public class PlayerInfoTable {
statement.setBytes(1, encodeUUID(uuid)); statement.setBytes(1, encodeUUID(uuid));
ResultSet rs = statement.executeQuery(); ResultSet rs = statement.executeQuery();
if(rs.next()){ if(rs.next()){
return rs.getInt("total")+1; return rs.getInt("total");
} }
rs.close(); rs.close();
} catch (SQLException e){ } catch (SQLException e){