summaryrefslogtreecommitdiff
path: root/Changelog-Trunk.txt
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-12-20 15:54:11 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-12-20 15:54:11 +0000
commitdb09034d6836abbd1c8988cd0d07236e3c8f2bf1 (patch)
tree577cced26eef0a0d31d896f3cc1c83d6dd1a385d /Changelog-Trunk.txt
parent71f3bdc9d000855ce363c8ef9f481c1526f8b480 (diff)
downloadhercules-db09034d6836abbd1c8988cd0d07236e3c8f2bf1.tar.gz
hercules-db09034d6836abbd1c8988cd0d07236e3c8f2bf1.tar.bz2
hercules-db09034d6836abbd1c8988cd0d07236e3c8f2bf1.tar.xz
hercules-db09034d6836abbd1c8988cd0d07236e3c8f2bf1.zip
- Added an answer to a FlavioJS's comment, and added a question myself (npc.c/script.c respectively)
- Fixed add_str in script.h not being updated to const char as well. But why do we really need such a script-engine low-level function exposed to the rest of files? :/ - Moved the strip unequip code to before deleting the timer, this fixes trying to "re-strip" someone causing the skill to fail and on top of that terminate their current strip effect. - Added an ugly work around to the issue of skills with additional effect causing opt1 status when they have just terminated them (in short, you shouldn't be able to hit someone with, say, sleep, and then have the same skill cause them stun, since both are opt1 values). - Reading of TK Mission variables will now happen if you are a TK-class character regardless of whether you know TK_MISSION or not. Should fix being able to reset skills to reset your Mission data. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9537 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'Changelog-Trunk.txt')
-rw-r--r--Changelog-Trunk.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 275bc172d..60791db70 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -4,6 +4,16 @@ 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/12/20
+ * Moved the strip unequip code to before deleting the timer, this fixes
+ trying to "re-strip" someone causing the skill to fail and on top of that
+ terminate their current strip effect.
+ * Reading of TK Mission variables will now happen if you are a TK-class
+ character regardless of whether you know TK_MISSION or not. Should fix
+ being able to reset skills to reset your Mission data.
+ * Added an ugly work around to the issue of skills with additional effect
+ causing opt1 status when they have just terminated them (in short, you
+ shouldn't be able to hit someone with, say, sleep, and then have the same
+ skill cause them stun, since both are opt1 values). [Skotlex]
* Now root script functions calls can have parenthesis (will take any
parenthesis after the function as the start of the argument list).
- This means "func (exp),exp;" isn't valid anymore.