diff options
author | Zido <Zido@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-23 20:40:41 +0000 |
---|---|---|
committer | Zido <Zido@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-23 20:40:41 +0000 |
commit | 8eed3aa81567e026e3744a692119c4094304fb92 (patch) | |
tree | d498239e712a014ca6285582fef8a82358d2f79f | |
parent | 9ac07b029ea3a97a621d6b817b87cf071d38da5c (diff) | |
download | hercules-8eed3aa81567e026e3744a692119c4094304fb92.tar.gz hercules-8eed3aa81567e026e3744a692119c4094304fb92.tar.bz2 hercules-8eed3aa81567e026e3744a692119c4094304fb92.tar.xz hercules-8eed3aa81567e026e3744a692119c4094304fb92.zip |
- Fixed wedding sprite staying active after unequip.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6719 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | Changelog-Trunk.txt | 1 | ||||
-rw-r--r-- | src/map/pc.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 4422ad15a..12b725ee6 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/05/23
+ * Fixed wedding sprite where it would stay active after unequipping. [Zido]
* Some cleanup of run_script, should fix the memory leak there. [Skotlex]
* the charname request hack message has been downgraded to only include
GM-invisible characters. [Skotlex]
diff --git a/src/map/pc.c b/src/map/pc.c index 9475c9566..80d269a6b 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -5458,6 +5458,7 @@ int pc_setoption(struct map_session_data *sd,int type) }
}
+ clif_changeoption(&sd->bl);
status_calc_pc(sd,0);
return 0;
}
|