diff options
author | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-02-27 20:04:30 +0000 |
---|---|---|
committer | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-02-27 20:04:30 +0000 |
commit | a14a1ebf16112348c1b19a31fa4d2ca75d468696 (patch) | |
tree | fe91235d6e0b75942f246828caeeb39f46612033 /doc | |
parent | adb7fc1b17c801ec03306d21c177bf37be7a5807 (diff) | |
download | hercules-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')
-rw-r--r-- | doc/script_commands.txt | 2 |
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!"; --------------------------------------- |