diff options
-rw-r--r-- | Changelog-Trunk.txt | 1 | ||||
-rw-r--r-- | src/map/atcommand.c | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index f0a731d9e..9cbe0737b 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/07/31
+ * Little fix on duel [Toms]
* Added possibility to restrict duel usage to same map [Toms]
* Merged mpeg's fix on ninja skills [Toms]
* Corrected a status_get_race call which should be status_get_race2 in misc
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index ccdbab7bf..9bbec8c1d 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -10184,7 +10184,8 @@ int atcommand_invite( if(battle_config.duel_only_on_same_map && target_sd->bl.m != sd->bl.m)
{
- clif_displaymessage(fd, msg_txt(364));
+ sprintf(atcmd_output, msg_txt(364), message);
+ clif_displaymessage(fd, atcmd_output);
return 0;
}
|