summaryrefslogtreecommitdiff
path: root/src/map/status.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-12-04 19:07:18 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-12-04 19:07:18 +0000
commit606fb6292db080bcbd84958c6e54df8eba190999 (patch)
tree48894ebd41340b63eb49b20df34cf5f82fdb789a /src/map/status.c
parente52bb631e65f92cb54f94b2fdbd6f149bde44457 (diff)
downloadhercules-606fb6292db080bcbd84958c6e54df8eba190999.tar.gz
hercules-606fb6292db080bcbd84958c6e54df8eba190999.tar.bz2
hercules-606fb6292db080bcbd84958c6e54df8eba190999.tar.xz
hercules-606fb6292db080bcbd84958c6e54df8eba190999.zip
- Fixed HVAN_INSTRUCT int bonuses.
- Renamed mob_db's "adelay" column to ThinkTime and made the mob.c code use it instead of MIN_MOBTHINKTIME. The adelay of mobs will also be equal to their thinktime unless their thinktime is less than their attack motion. - Cleaned the mob_db reading code a bit. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9406 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r--src/map/status.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/status.c b/src/map/status.c
index bb95e6405..6a2ef578f 100644
--- a/src/map/status.c
+++ b/src/map/status.c
@@ -2398,8 +2398,8 @@ int status_calc_homunculus(struct homun_data *hd, int first)
if((skill = merc_hom_checkskill(hd,HVAN_INSTRUCT)) > 0)
{
- status->int_ += 1 +skill/2 -skill/4 +skill/5;
- status->str += 1 +2*(skill/3) +skill/4;
+ status->int_ += 1 +skill/2 +skill/4 +skill/5;
+ status->str += 1 +skill/3 +skill/3 +skill/4;
}
if((skill=merc_hom_checkskill(hd,HAMI_SKIN)) > 0)