summaryrefslogtreecommitdiff
path: root/src/map/mob.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-10-31 16:04:06 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-10-31 16:04:06 +0000
commit544e0c0ecdf3f4d0c875e19588fbdf848ffdac99 (patch)
tree954b6e828a5c094080a35fa12cee6537097dd560 /src/map/mob.c
parente4da0000fd29b3effb80404bfebdc0f89b8a67f3 (diff)
downloadhercules-544e0c0ecdf3f4d0c875e19588fbdf848ffdac99.tar.gz
hercules-544e0c0ecdf3f4d0c875e19588fbdf848ffdac99.tar.bz2
hercules-544e0c0ecdf3f4d0c875e19588fbdf848ffdac99.tar.xz
hercules-544e0c0ecdf3f4d0c875e19588fbdf848ffdac99.zip
- When Kaizel (or super novice rebirth skill) triggers, you get debuffed now.
- Modified the player_cloak_check_type and monster_cloak_check_type settings. 1 makes it check for walls, 2 makes cloaking NOT end on normal attacks, and 4 makes cloaking NOT end when using skills. The default setting for players is still 1, but for mobs the default has been changed to 4. - Non-players can now use all skills while hidden. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9109 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.c')
-rw-r--r--src/map/mob.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/mob.c b/src/map/mob.c
index 9442adddf..2033cddbf 100644
--- a/src/map/mob.c
+++ b/src/map/mob.c
@@ -1594,15 +1594,15 @@ void mob_damage(struct mob_data *md, struct block_list *src, int damage)
{
int char_id = 0, flag = 0;
+ if (damage > 0) //Store total damage...
+ md->tdmg+=damage;
+
if(md->guardian_data && md->guardian_data->number < MAX_GUARDIANS) // guardian hp update [Valaris] (updated by [Skotlex])
md->guardian_data->castle->guardian[md->guardian_data->number].hp = md->status.hp;
if (battle_config.show_mob_info&3)
clif_charnameack (0, &md->bl);
- if (damage > 0) //Store total damage...
- md->tdmg+=damage;
-
if (!src)
return;