diff options
author | blacksirius <blacksirius@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-10 16:28:48 +0000 |
---|---|---|
committer | blacksirius <blacksirius@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-10 16:28:48 +0000 |
commit | 777fa3427e13e78f718fd4523e330a420446997a (patch) | |
tree | c123edfc971e42b5c5047a5758ca630429461689 /src/map/skill.c | |
parent | eadbcb71e5d5d453a56403dee28abb82b3836bb7 (diff) | |
download | hercules-777fa3427e13e78f718fd4523e330a420446997a.tar.gz hercules-777fa3427e13e78f718fd4523e330a420446997a.tar.bz2 hercules-777fa3427e13e78f718fd4523e330a420446997a.tar.xz hercules-777fa3427e13e78f718fd4523e330a420446997a.zip |
moved skill_nocast_db.txt to re / pre-re db path
moved item_noequip.txt to re / pre-re db path
NOTE:
both files are now located in db/re/ (or db/pre-re/) folders
depending on your build.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16265 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/skill.c')
-rw-r--r-- | src/map/skill.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index fa163c222..9a2e3ed6f 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -16901,7 +16901,7 @@ static void skill_readdb(void) sv_readdb(db_path, DBPATH"skill_castnodex_db.txt", ',', 2, 3, MAX_SKILL_DB, skill_parse_row_castnodexdb); sv_readdb(db_path, DBPATH"skill_unit_db.txt" , ',', 8, 8, MAX_SKILL_DB, skill_parse_row_unitdb); - sv_readdb(db_path, "skill_nocast_db.txt" , ',', 2, 2, MAX_SKILL_DB, skill_parse_row_nocastdb); + sv_readdb(db_path, DBPATH"skill_nocast_db.txt" , ',', 2, 2, MAX_SKILL_DB, skill_parse_row_nocastdb); skill_init_unit_layout(); sv_readdb(db_path, "produce_db.txt" , ',', 4, 4+2*MAX_PRODUCE_RESOURCE, MAX_SKILL_PRODUCE_DB, skill_parse_row_producedb); |