diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-15 03:34:46 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-15 03:34:46 +0000 |
commit | d6e62296ebf9962ec21fdd084fddf3483ecfb691 (patch) | |
tree | 8104dafbe7c6553075ae01093deda9753c8dbf40 | |
parent | 21be322479695f6fb792c19e13498a34c6fad7bd (diff) | |
download | hercules-d6e62296ebf9962ec21fdd084fddf3483ecfb691.tar.gz hercules-d6e62296ebf9962ec21fdd084fddf3483ecfb691.tar.bz2 hercules-d6e62296ebf9962ec21fdd084fddf3483ecfb691.tar.xz hercules-d6e62296ebf9962ec21fdd084fddf3483ecfb691.zip |
Fixed Icewall not restoring the original cell type (mistake in r11175).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12836 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/skill.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index e1a40bcde..a234ebf57 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,8 +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. 2008/06/14 + * Fixed Icewall not restoring the original cell type [ultramage] * Fixed PF_FOGWALL working on Boss monsters. [Brainstorm] - 2008/06/13 * Fixed Evil Land working versus undead element instead of undead race. * Fixed Grandcross and darkgrandcross, should only cause blind against undead race. diff --git a/src/map/skill.c b/src/map/skill.c index 55eda03cc..78d2e3c7f 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -6463,6 +6463,7 @@ struct skill_unit_group* skill_unitsetting (struct block_list *src, short skilli break; case WZ_ICEWALL: val1 = (skilllv <= 1) ? 500 : 200 + 200*skilllv; + val2 = map_getcell(src->m, ux, uy, CELL_GETTYPE); break; case HT_LANDMINE: case HT_ANKLESNARE: |