diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-10-12 13:57:01 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-10-12 13:57:01 +0000 |
commit | 78c0d6d558d8403c1a61b0e306a37488d1c2cbb5 (patch) | |
tree | a04d30acd84ef746e91dcff84ca827a492943c35 /src/map/pc.c | |
parent | 7c0c257c88590432c80a5330d01414396d33fdb0 (diff) | |
download | hercules-78c0d6d558d8403c1a61b0e306a37488d1c2cbb5.tar.gz hercules-78c0d6d558d8403c1a61b0e306a37488d1c2cbb5.tar.bz2 hercules-78c0d6d558d8403c1a61b0e306a37488d1c2cbb5.tar.xz hercules-78c0d6d558d8403c1a61b0e306a37488d1c2cbb5.zip |
- Corrected Caprice cast info. No cast time, delay time equal to the bolt spells.
- When slaves_inherit_speed is set (which is also the default), homun will have the same speed of their master when spawned.
- When using Hatred and you already have a hate target, your current hate target is displayed now.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8972 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index a37af8273..a69d63e29 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -777,8 +777,11 @@ int pc_set_hate_mob(struct map_session_data *sd, int pos, struct block_list *bl) int class_; if (!sd || !bl || pos < 0 || pos > 2) return 0; - if (sd->hate_mob[pos] != -1) //Can't change hate targets. + if (sd->hate_mob[pos] != -1) + { //Can't change hate targets. + clif_hate_mob(sd,pos,sd->hate_mob[pos]); //Display current return 0; + } class_ = status_get_class(bl); if (!pcdb_checkid(class_)) { |