소스 검색

BETA: Fixed a minor typo in `Fort#removeDoorUpgrade`.
* Reported by: lion

Nos 11 년 전
부모
커밋
2e77e731e3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      L2J_Server_BETA/java/com/l2jserver/gameserver/model/entity/Fort.java

+ 1 - 1
L2J_Server_BETA/java/com/l2jserver/gameserver/model/entity/Fort.java

@@ -779,7 +779,7 @@ public final class Fort extends AbstractResidence
 	private void removeDoorUpgrade()
 	{
 		try (Connection con = L2DatabaseFactory.getInstance().getConnection();
-			PreparedStatement ps = con.prepareStatement("DELETE FROM fort_doorupgrade WHERE WHERE fortId = ?"))
+			PreparedStatement ps = con.prepareStatement("DELETE FROM fort_doorupgrade WHERE fortId = ?"))
 		{
 			ps.setInt(1, getResidenceId());
 			ps.execute();