Explorar el Código

Fixed bugreport:6725 where wrong defined macro is used in parsing 'skill_cast_db.txt'

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@16806 54d463be-8e91-2dee-dedb-b68131a5f0ec
rud0lp20 hace 12 años
padre
commit
c3b434f037
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/map/skill.c

+ 1 - 1
src/map/skill.c

@@ -17500,7 +17500,7 @@ static void skill_readdb(void)
 
 	sv_readdb(db_path, DBPATH"skill_db.txt"          , ',',  17, 17, MAX_SKILL_DB, skill_parse_row_skilldb);
 	sv_readdb(db_path, DBPATH"skill_require_db.txt"  , ',',  32, 32, MAX_SKILL_DB, skill_parse_row_requiredb);
-#ifdef RENEWAL
+#ifdef RENEWAL_CAST
 	sv_readdb(db_path, "re/skill_cast_db.txt"     , ',',   8,  8, MAX_SKILL_DB, skill_parse_row_castdb);
 #else
 	sv_readdb(db_path, "pre-re/skill_cast_db.txt"     , ',',   7,  7, MAX_SKILL_DB, skill_parse_row_castdb);