소스 검색

Follow up to e368b5f

The aegis name check should only be applied to items. @lighta

Follow up to 6206537

Reverted the mob skill db SQL changes.
rAthenaAPI 9 년 전
부모
커밋
887dd7e80e
3개의 변경된 파일565개의 추가작업 그리고 565개의 파일을 삭제
  1. 282 282
      sql-files/mob_skill_db.sql
  2. 282 282
      sql-files/mob_skill_db_re.sql
  3. 1 1
      tools/convert_sql.pl

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 282 - 282
sql-files/mob_skill_db.sql


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 282 - 282
sql-files/mob_skill_db_re.sql


+ 1 - 1
tools/convert_sql.pl

@@ -116,7 +116,7 @@ sub ConvertFile { my($sFilein,$sFileout,$sType)=@_;
 				printf $sFHout ("%s\n", $ligne);
 			} else {
 				printf $sFHout ("REPLACE INTO `%s` VALUES (", $db);
-				if($sWasCom == 0){ #check if aegis name is duplicate, (only for not com)
+				if( $sType =~ /item/i and $sWasCom == 0){ #check if aegis name is duplicate, (only for not com)
 					$hAEgisName{$champ[1]}++;
 					if($hAEgisName{$champ[1]} > 1){
 						print "Warning, aegisName=$champ[1] multiple occurence found, val=$hAEgisName{$champ[1]}, line=$ligne\n" ;

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.