Little fix on duel

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@8014 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
toms 2006-07-31 22:41:40 +00:00
parent 35fc0dc4f3
commit be50bd5620
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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;
}