Procházet zdrojové kódy

BETA: Reverting [5168] due is not working as should.

MELERIX před 13 roky
rodič
revize
0c87b6d784

+ 2 - 1
L2J_Server_BETA/java/com/l2jserver/gameserver/idfactory/IdFactory.java

@@ -305,7 +305,8 @@ public abstract class IdFactory
 		{
 			con = L2DatabaseFactory.getInstance().getConnection();
 			Statement statement = con.createStatement();
-			statement.executeUpdate("DELETE FROM mods_wedding WHERE (player1Id OR player2Id) NOT IN (SELECT charId FROM characters)");
+			statement.executeUpdate("DELETE FROM mods_wedding WHERE player1Id NOT IN (SELECT charId FROM characters)");
+			statement.executeUpdate("DELETE FROM mods_wedding WHERE player2Id NOT IN (SELECT charId FROM characters)");
 			statement.close();
 			
 			_log.info("Cleaned up invalid Weddings.");