diff options
-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;
}
|