소스 검색

- 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;
 	}