diff options
author | shadow <shadow@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-14 11:49:07 +0000 |
---|---|---|
committer | shadow <shadow@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-14 11:49:07 +0000 |
commit | ee32b70e68031b2b551579a3465caaf9ca5d2ceb (patch) | |
tree | 4d55e36504fcd93d8d041ef3c4f3b7bc75876dd1 | |
parent | 800f4cae328eeba10d628093ce3f4686e74691e7 (diff) | |
download | hercules-ee32b70e68031b2b551579a3465caaf9ca5d2ceb.tar.gz hercules-ee32b70e68031b2b551579a3465caaf9ca5d2ceb.tar.bz2 hercules-ee32b70e68031b2b551579a3465caaf9ca5d2ceb.tar.xz hercules-ee32b70e68031b2b551579a3465caaf9ca5d2ceb.zip |
Fixed PF_FOGWALL working on Boss monsters.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12832 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/status.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 93130b362..e1a40bcde 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -3,6 +3,8 @@ Date Added AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. +2008/06/14 + * Fixed PF_FOGWALL working on Boss monsters. [Brainstorm] 2008/06/13 * Fixed Evil Land working versus undead element instead of undead race. diff --git a/src/map/status.c b/src/map/status.c index 0eee43ed7..ff94e6e68 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -4832,6 +4832,7 @@ int status_change_start(struct block_list* bl,enum sc_type type,int rate,int val case SC_STRIPHELM: case SC_RICHMANKIM: case SC_ROKISWEIL: + case SC_FOGWALL: return 0; } } |