summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-09-05 02:51:57 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-09-05 02:51:57 +0000
commite9c1908de22b4a194ca70e8d46daa2a95c2e2fc4 (patch)
treec25492d21bfd137f21eab51f793ee934ef54b2bc
parent22a782729ac53afe8c2641eea916d259da4ca711 (diff)
downloadhercules-e9c1908de22b4a194ca70e8d46daa2a95c2e2fc4.tar.gz
hercules-e9c1908de22b4a194ca70e8d46daa2a95c2e2fc4.tar.bz2
hercules-e9c1908de22b4a194ca70e8d46daa2a95c2e2fc4.tar.xz
hercules-e9c1908de22b4a194ca70e8d46daa2a95c2e2fc4.zip
- Fixed crash when using Adaptation during an Encore.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8627 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--Changelog-Trunk.txt1
-rw-r--r--src/map/skill.c10
2 files changed, 6 insertions, 5 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index d9c71dc90..3a4810cac 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -4,6 +4,7 @@ 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/09/04
+ * Fixed crash when using Adaptation during an Encore. [Skotlex]
* Should have fixed manner being reset to 0 on logout while muted.
[Skotlex]
* Removed status_get_sc_tick, duration and chance are now both handled by
diff --git a/src/map/skill.c b/src/map/skill.c
index 8853dffbf..acbd081c4 100644
--- a/src/map/skill.c
+++ b/src/map/skill.c
@@ -9544,16 +9544,16 @@ void skill_stop_dancing (struct block_list *src)
dsd = map_id2sd(sc->data[SC_DANCING].val4);
sc->data[SC_DANCING].val4 = 0;
}
+ status_change_end(src, SC_DANCING, -1);
- if (group)
- skill_delunitgroup(NULL, group, 0);
-
if (dsd)
{
dsd->sc.data[SC_DANCING].val4 = dsd->sc.data[SC_DANCING].val2 = 0;
status_change_end(&dsd->bl, SC_DANCING, -1);
}
- status_change_end(src, SC_DANCING, -1);
+
+ if (group)
+ skill_delunitgroup(NULL, group, 0);
}
/*==========================================
@@ -9789,7 +9789,7 @@ int skill_delunitgroup (struct block_list *src, struct skill_unit_group *group,
group->valstr=NULL;
}
- map_freeblock((struct block_list*)group->unit);
+ map_freeblock(&group->unit->bl);
group->unit=NULL;
group->group_id=0;
group->unit_count=0;