summaryrefslogtreecommitdiff
path: root/doc/script_commands.txt
diff options
context:
space:
mode:
authorbrianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-02-27 20:04:30 +0000
committerbrianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-02-27 20:04:30 +0000
commita14a1ebf16112348c1b19a31fa4d2ca75d468696 (patch)
treefe91235d6e0b75942f246828caeeb39f46612033 /doc/script_commands.txt
parentadb7fc1b17c801ec03306d21c177bf37be7a5807 (diff)
downloadhercules-a14a1ebf16112348c1b19a31fa4d2ca75d468696.tar.gz
hercules-a14a1ebf16112348c1b19a31fa4d2ca75d468696.tar.bz2
hercules-a14a1ebf16112348c1b19a31fa4d2ca75d468696.tar.xz
hercules-a14a1ebf16112348c1b19a31fa4d2ca75d468696.zip
- Fixed a small typo in script_commands.txt
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15634 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'doc/script_commands.txt')
-rw-r--r--doc/script_commands.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/script_commands.txt b/doc/script_commands.txt
index 50f5d5dfe..cfa32b31b 100644
--- a/doc/script_commands.txt
+++ b/doc/script_commands.txt
@@ -2164,7 +2164,7 @@ If there is no such party ID, "null" will be returned.
Lets say the ID of a party was saved as a global variable:
// This would return the name of the party from the ID stored in a variable
- mes "You're in the '"+getpartyname($@var)"' party, I know!";
+ mes "You're in the '"+getpartyname($@var)+"' party, I know!";
---------------------------------------