diff options
-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 a7d1167df..448f59b92 100644 --- a/doc/script_commands.txt +++ b/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; } |