diff options
author | celest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-02-24 03:06:11 +0000 |
---|---|---|
committer | celest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-02-24 03:06:11 +0000 |
commit | d257a8eea5c92370e8d0e3e2912ac3073015020a (patch) | |
tree | d80c28e0e9d068f1fb7039a81df12d77c89b8ce5 | |
parent | ad81f62be42d1f1e6ef14266d442603a68714c94 (diff) | |
download | hercules-d257a8eea5c92370e8d0e3e2912ac3073015020a.tar.gz hercules-d257a8eea5c92370e8d0e3e2912ac3073015020a.tar.bz2 hercules-d257a8eea5c92370e8d0e3e2912ac3073015020a.tar.xz hercules-d257a8eea5c92370e8d0e3e2912ac3073015020a.zip |
* Fixed another bad typo in skill list_num reading
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@1171 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | Changelog-SVN.txt | 1 | ||||
-rw-r--r-- | src/map/skill.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Changelog-SVN.txt b/Changelog-SVN.txt index 8ca6cf7da..f81338f01 100644 --- a/Changelog-SVN.txt +++ b/Changelog-SVN.txt @@ -1,6 +1,7 @@ Date Added 02/24 + * Fixed another bad typo in skill list_num reading, thanks to orn [celest] * Fixed Steal Item Rate. It has been multiplied twice on common_item_drop value for any kinds of items. [Lupus] e.g. If you set droprate of comman items to 500%, then even rare items could be stolen more easily. Thanks to Freya * Items Droprate fix. Now it adjusts correctly, w/o overflows. Thanks to Freya [Lupus] diff --git a/src/map/skill.c b/src/map/skill.c index 75df62f6b..3eb77bf70 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -9300,7 +9300,7 @@ int skill_readdb(void) skill_db[i].pl=atoi(split[4]); skill_db[i].nk=atoi(split[5]); skill_db[i].max=atoi(split[6]); - skill_split_atoi(split[1],skill_db[i].num); + skill_split_atoi(split[7],skill_db[i].num); if(strcmpi(split[8],"yes") == 0) skill_db[i].castcancel=1; |