diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-11-30 08:55:22 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-11-30 08:55:22 +0000 |
commit | fd435430623c01ec109f506c9afd1e3b46c03e7d (patch) | |
tree | 486ccda694a57891a8591347089905203d345d1c /src/map/atcommand.c | |
parent | 1a71202b477c6820b9193a1131a61c3c7b005924 (diff) | |
download | hercules-fd435430623c01ec109f506c9afd1e3b46c03e7d.tar.gz hercules-fd435430623c01ec109f506c9afd1e3b46c03e7d.tar.bz2 hercules-fd435430623c01ec109f506c9afd1e3b46c03e7d.tar.xz hercules-fd435430623c01ec109f506c9afd1e3b46c03e7d.zip |
* Made skill_tree.txt reading use sv_readdb. [Ai4rei]
- Added define for skill entry requirements.
- Reports duplicate skills within same job class.
- Updated comments for skill Berserk in skill_tree.txt, among others because they would cause errors the way they are read now.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14524 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 7f73a536a..59849bc8a 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -5786,7 +5786,7 @@ ACMD_FUNC(skilltree) ent = &skill_tree[c][j]; meets = 1; - for(j=0;j<5;j++) + for(j=0;j<MAX_PC_SKILL_REQUIRE;j++) { if( ent->need[j].id && pc_checkskill(sd,ent->need[j].id) < ent->need[j].lv) { |