Forráskód Böngészése

- Fixed a CMake build error, since r17181.
- Fixed a 'replacestr' example in script_commands.txt

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@17204 54d463be-8e91-2dee-dedb-b68131a5f0ec

brianluau 12 éve
szülő
commit
474ea165e2
2 módosított fájl, 2 hozzáadás és 3 törlés
  1. 0 1
      CMakeLists.txt
  2. 2 2
      doc/script_commands.txt

+ 0 - 1
CMakeLists.txt

@@ -481,7 +481,6 @@ set( RUNTIME_FILES
 	"${CMAKE_CURRENT_SOURCE_DIR}/README.txt"
 	"${CMAKE_CURRENT_SOURCE_DIR}/runserver-sql.bat"
 	"${CMAKE_CURRENT_SOURCE_DIR}/serv.bat"
-	"${CMAKE_CURRENT_SOURCE_DIR}/start"
 	"${CMAKE_CURRENT_SOURCE_DIR}/zlib1.dll"
 	)
 set( RUNTIME_DIRECTORIES

+ 2 - 2
doc/script_commands.txt

@@ -6982,8 +6982,8 @@ in the count parameter.
 
 Example:
 	replacestr("testing tester", "test", "dash"); //returns "dashing dasher"
-	replacestr("Donkey", "don", "mon", 0);	//returns "monkey"
-	replacestr("test test test test test", "yay", 0, 3); //returns "yay yay yay test test"
+	replacestr("Donkey", "don", "mon", 0); //returns "monkey"
+	replacestr("test test test test test", "test", "yay", 0, 3); //returns "yay yay yay test test"
 
 ---------------------------------------