LuaGameplay.wiki
changeset 1951 aaee22e79dd3
parent 1950 f06aa24697b7
child 1952 da4ee30e45f1
--- a/LuaGameplay.wiki	Wed Jul 17 13:14:02 2019 +0100
+++ b/LuaGameplay.wiki	Wed Jul 17 13:15:00 2019 +0100
@@ -363,7 +363,7 @@
  * `color`: Team color, usually a number from -9 to -1 (see below)
  * `grave`: The name of the team’s grave (equals file name without the suffix)
  * `fort`: The name of the team’s fort (equals file name without the suffix and without the letter “L” or “R” before that suffix)
- * `voicepack`: The name of the team’s voice pack (equals the directory name). Since version 1.0.0, you can append “_qau” so Hedgewars will automatically pick the appropriate language version of the voicepack (e.g. instead of “Default”, use “Default\_qau”). This is preferred.
+ * `voicepack`: The name of the team’s voice pack (equals the directory name). Since version 1.0.0, you can append “`_qau`” so Hedgewars will automatically pick the appropriate language version of the voicepack (e.g. instead of “Default”, use “`Default_qau`”). This is preferred.
  * `flag`: Optional argument for the name of the team’s flag (equals the file name case-sensitively without the suffix). If set to `nil` or the flag can not be found on the local computer, the flag “hedgewars” is used.
 
 Since version 1.0.0, the team name might be force-changed in case of a naming collision. Since version 1.0.0, this function returns two values: `<real team name>, <team index>`. For functions that need the team name as input (lke `DismissTeam`), you must use this returned `<real team name>`.
@@ -390,11 +390,11 @@
 
 For example, if `voicepack` is set to “Default\_qau”, Hedgewars will pick “Default_pl” if the user language is Polish. If the user language is set to a language for which there is no localize version of the Default voicepack, Hedgewars will pick the “Default” voicepack (which is in English).
 
-We strongly recommend to always use the “_qau” suffix from version 1.0.0 on, unless you really want to force a particular language.
+We strongly recommend to always use the “`_qau`” suffix from version 1.0.0 on, unless you really want to force a particular language.
 
 ==== Example ====
 
-<code language="lua">AddTeam("team 1", -1, "Simple", "Tank", "Default\_qau", "hedgewars")
+<code language="lua">AddTeam("team 1", -1, "Simple", "Tank", "Default_qau", "hedgewars")
 --[[ Adds a new team with name “team 1”, the first default color (usually red), the grave “Simple”,
 the fort “Tank” the voicepack “Default” (in the appropriate language version) and the flag “hedgewars”. ]]</code>