Browse Source

- Fixed a small typo in script_commands.txt

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@15634 54d463be-8e91-2dee-dedb-b68131a5f0ec
brianluau 13 năm trước cách đây
mục cha
commit
3d8bd6c9c1
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      doc/script_commands.txt

+ 1 - 1
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!";
 
 ---------------------------------------