From be50bd5620fdb47eae18f07657d11b9f006eec29 Mon Sep 17 00:00:00 2001 From: toms Date: Mon, 31 Jul 2006 22:41:40 +0000 Subject: [PATCH] Little fix on duel git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@8014 54d463be-8e91-2dee-dedb-b68131a5f0ec --- Changelog-Trunk.txt | 1 + src/map/atcommand.c | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index f0a731d9ea..9cbe0737bc 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 ccdbab7bf0..9bbec8c1d1 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; }