Pārlūkot izejas kodu

- 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 gadi atpakaļ
vecāks
revīzija
c182390854
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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;
 	}