From fefc60d0a202e489ebc0d999f13a0abcc638518a Mon Sep 17 00:00:00 2001 From: ultramage Date: Wed, 14 Nov 2007 09:31:47 +0000 Subject: Fixed some homunculus skill offset calculation mistakes (bugreport:363) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11731 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/char/int_homun.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/char') diff --git a/src/char/int_homun.c b/src/char/int_homun.c index 545f0d08c..7f6e971aa 100644 --- a/src/char/int_homun.c +++ b/src/char/int_homun.c @@ -97,9 +97,9 @@ int inter_homun_fromstr(char *str,struct s_homunculus *p) if (sscanf(str+next, "%d,%d,%n", &tmp_int[0], &tmp_int[1], &len) != 2) return 2; - if (tmp_int[0] > HM_SKILLBASE && tmp_int[0] <= HM_SKILLBASE+MAX_HOMUNSKILL) + if (tmp_int[0] > HM_SKILLBASE && tmp_int[0] < HM_SKILLBASE+MAX_HOMUNSKILL) { - i = tmp_int[0] - HM_SKILLBASE -1; + i = tmp_int[0] - HM_SKILLBASE; p->hskill[i].id = tmp_int[0]; p->hskill[i].lv = tmp_int[1]; } else -- cgit v1.2.3-70-g09d2