瀏覽代碼

- Fixed a typo in r16840.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@16841 54d463be-8e91-2dee-dedb-b68131a5f0ec
brianluau 12 年之前
父節點
當前提交
c182390854
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      doc/script_commands.txt

+ 1 - 1
doc/script_commands.txt

@@ -2362,7 +2362,7 @@ Example 2: check party count (with a 'next' pause), before warping to event
 	getpartymember getcharid(1), 1;
 	getpartymember getcharid(1), 2;
 	
-	if ( $@partymembercount < .register_num ) {
+	if ( $@partymembercount != .register_num ) {
 		mes "Please form a party of "+ .register_num +" to continue";
 		close;
 	}