summaryrefslogtreecommitdiff
path: root/src/map/atcommand.c
diff options
context:
space:
mode:
authortoms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-07-31 22:41:40 +0000
committertoms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-07-31 22:41:40 +0000
commit6e909c5fe0ac44b801febce0076cf9866082899f (patch)
treee5bfe73f538de6d5580fe356ea6a86a6e4bdcdd2 /src/map/atcommand.c
parentfbafb947631a4d0b1c4afcc15afa011a9179ecea (diff)
downloadhercules-6e909c5fe0ac44b801febce0076cf9866082899f.tar.gz
hercules-6e909c5fe0ac44b801febce0076cf9866082899f.tar.bz2
hercules-6e909c5fe0ac44b801febce0076cf9866082899f.tar.xz
hercules-6e909c5fe0ac44b801febce0076cf9866082899f.zip
Little fix on duel
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8014 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r--src/map/atcommand.c3
1 files changed, 2 insertions, 1 deletions
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;
}