diff options
author | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-12 15:33:46 +0000 |
---|---|---|
committer | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-12 15:33:46 +0000 |
commit | 22ea2706f0a9767d9910522868cc90f121cfc6fa (patch) | |
tree | 8e175971996f5200b1b886a542d117a2e694d129 /doc/script_commands.txt | |
parent | 79cb8649ce5c13def3ba0d256ca84d46a0ccfc3d (diff) | |
download | hercules-22ea2706f0a9767d9910522868cc90f121cfc6fa.tar.gz hercules-22ea2706f0a9767d9910522868cc90f121cfc6fa.tar.bz2 hercules-22ea2706f0a9767d9910522868cc90f121cfc6fa.tar.xz hercules-22ea2706f0a9767d9910522868cc90f121cfc6fa.zip |
- Added svn:eol-style=native property on some recently added text files.
- Fixed a typo in script_commands.txt (bugreport:5998)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16278 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'doc/script_commands.txt')
-rw-r--r-- | doc/script_commands.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/script_commands.txt b/doc/script_commands.txt index adae3726f..6e6c9127f 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -6706,12 +6706,12 @@ The first letter is position 0. Returns the original string with the specified char inserted at the specified index. If index is out of range, the char - will be inserted on the end of the string that it is closest. + will be inserted on the end of the string that it is closest. Only the 1st char in the <char> parameter will be used. Example: - setchar("laughter", "s", 0); //returns "slaughter" + insertchar("laughter", "s", 0); //returns "slaughter" --------------------------------------- |