diff options
author | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-11-08 21:54:18 +0000 |
---|---|---|
committer | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-11-08 21:54:18 +0000 |
commit | ede6c2a089b4d87e40bca84f1cf061465c95f7de (patch) | |
tree | 565c823a8b3c3fbf5eb21284a8b6fd6605fb422b /src/map/atcommand.c | |
parent | 527db8fd6b5be19c797a525ddab6f02c2e6e509d (diff) | |
download | hercules-ede6c2a089b4d87e40bca84f1cf061465c95f7de.tar.gz hercules-ede6c2a089b4d87e40bca84f1cf061465c95f7de.tar.bz2 hercules-ede6c2a089b4d87e40bca84f1cf061465c95f7de.tar.xz hercules-ede6c2a089b4d87e40bca84f1cf061465c95f7de.zip |
- Fixed a typo in @mapflag example, since r15009.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16875 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 75afd4a46..45f14be6f 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -7632,7 +7632,7 @@ ACMD_FUNC(mapflag) { checkflag(restricted); checkflag(nodrop); checkflag(novending); checkflag(loadevent); checkflag(nochat); checkflag(partylock); checkflag(guildlock); checkflag(src4instance); clif_displaymessage(sd->fd," "); - clif_displaymessage(sd->fd,msg_txt(1312)); // Usage: "@mapflag monster_teleport 1" (0=Off | 1=On) + clif_displaymessage(sd->fd,msg_txt(1312)); // Usage: "@mapflag monster_noteleport 1" (0=Off | 1=On) clif_displaymessage(sd->fd,msg_txt(1313)); // Type "@mapflag available" to list the available mapflags. return 1; } @@ -7652,7 +7652,7 @@ ACMD_FUNC(mapflag) { setflag(nochat); setflag(partylock); setflag(guildlock); setflag(src4instance); clif_displaymessage(sd->fd,msg_txt(1314)); // Invalid flag name or flag. - clif_displaymessage(sd->fd,msg_txt(1312)); // Usage: "@mapflag monster_teleport 1" (0=Off | 1=On) + clif_displaymessage(sd->fd,msg_txt(1312)); // Usage: "@mapflag monster_noteleport 1" (0=Off | 1=On) clif_displaymessage(sd->fd,msg_txt(1315)); // Available Flags: clif_displaymessage(sd->fd,"----------------------------------"); clif_displaymessage(sd->fd,"town, autotrade, allowks, nomemo, noteleport, noreturn, monster_noteleport, nosave,"); |