summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasterOfMuppets <MasterOfMuppets@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-06-03 18:25:10 +0000
committerMasterOfMuppets <MasterOfMuppets@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-06-03 18:25:10 +0000
commit9b3d330462f97bcf287d25ecaab0d8d63698e457 (patch)
tree66c6a63818668dbc9d8800c5420483a520ff2b98
parenta8baac8b91b6511784a61521c72ca9b1ae1c21c3 (diff)
downloadhercules-9b3d330462f97bcf287d25ecaab0d8d63698e457.tar.gz
hercules-9b3d330462f97bcf287d25ecaab0d8d63698e457.tar.bz2
hercules-9b3d330462f97bcf287d25ecaab0d8d63698e457.tar.xz
hercules-9b3d330462f97bcf287d25ecaab0d8d63698e457.zip
Solved the bug that made firewalls only castable a few times until you relogged. Thanks to Euph for the fix.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6959 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--Changelog-Trunk.txt2
-rw-r--r--src/map/skill.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index a8918a587..91f8af8ca 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -4,6 +4,8 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2006/06/03
+ * Solved the bug that made firewalls only castable a few times until [MasterOfMuppets]
+ you relogged. Thanks to Euph for the fix.
* Added variable other_mapserver_count to chrif.c which holds total count
of connected map-servers. By using this we prevent sending unnecessary
packets to the char-server when there's no more map-servers connected.
diff --git a/src/map/skill.c b/src/map/skill.c
index 28a657211..663ebee21 100644
--- a/src/map/skill.c
+++ b/src/map/skill.c
@@ -6689,7 +6689,7 @@ int skill_unit_onplace_timer(struct skill_unit *src,struct block_list *bl,unsign
skill_attack(BF_MAGIC,ss,&src->bl,bl,sg->skill_id,sg->skill_lv,tick,0);
src->val2--;
}
- if (src->val2<=0)
+ if (--src->val2<=0)
skill_delunit(src);
break;
}