|
@@ -48,7 +48,7 @@ public class RaidBossPointsManager
|
|
|
try
|
|
|
{
|
|
|
con = L2DatabaseFactory.getInstance().getConnection();
|
|
|
- PreparedStatement statement = con.prepareStatement("SELECT * FROM `character_raidpoints`");
|
|
|
+ PreparedStatement statement = con.prepareStatement("SELECT * FROM `character_raid_points`");
|
|
|
ResultSet rset = statement.executeQuery();
|
|
|
while(rset.next())
|
|
|
{
|
|
@@ -60,7 +60,7 @@ public class RaidBossPointsManager
|
|
|
{
|
|
|
int charId = n.getValue();
|
|
|
FastMap<Integer, Integer> values = new FastMap<Integer, Integer>();
|
|
|
- statement = con.prepareStatement("SELECT * FROM `character_raidpoints` WHERE `charId`=?");
|
|
|
+ statement = con.prepareStatement("SELECT * FROM `character_raid_points` WHERE `charId`=?");
|
|
|
statement.setInt(1, charId);
|
|
|
rset = statement.executeQuery();
|
|
|
while(rset.next())
|