summaryrefslogtreecommitdiff
path: root/doc/script_commands.txt
diff options
context:
space:
mode:
authorbrianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-10-29 15:16:55 +0000
committerbrianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-10-29 15:16:55 +0000
commit3aa301531937846138b34654db101ee2916fe4f5 (patch)
tree459734877afff9a6a05884f1f02cf2ee8c2fa87f /doc/script_commands.txt
parentcbb4c9dd590498c1bd56baa9089140d147e7a0c1 (diff)
downloadhercules-3aa301531937846138b34654db101ee2916fe4f5.tar.gz
hercules-3aa301531937846138b34654db101ee2916fe4f5.tar.bz2
hercules-3aa301531937846138b34654db101ee2916fe4f5.tar.xz
hercules-3aa301531937846138b34654db101ee2916fe4f5.zip
- Fixed a typo in r16840.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16841 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'doc/script_commands.txt')
-rw-r--r--doc/script_commands.txt2
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;
}