diff options
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/clif.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 966fdd794..e98658185 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +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.
2006/11/08
+ * The GVG map-packet will now also be sent for guild dungeon maps.
+ [Skotlex]
* Added clif_gospel_info which displays info about the buffs you are
receiving. Thanks to Rayce for the packet information. [Skotlex]
* Fixed Spider Web not ending when hit by a fireelemental attack. [Skotlex]
diff --git a/src/map/clif.c b/src/map/clif.c index 836d8cc21..2c2574187 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -8322,7 +8322,7 @@ void clif_parse_LoadEndAck(int fd,struct map_session_data *sd) if(sd->duel_group)
clif_set0199(fd, 1);
- if(map_flag_gvg(sd->bl.m))
+ if(map_flag_gvg(sd->bl.m) || map[sd->bl.m].flag.gvg_dungeon)
clif_set0199(fd,3);
// pet
|