Skip to content

Commit ffa17e9

Browse files
committed
Fix 404 in meta.xml
1 parent 55af3e3 commit ffa17e9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

web/src/pages/reference/Meta.xml.astro

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ It is also the scope of "elements". It is written in XML, which is based on HTML
3434
<li><strong>src:</strong> The file name of the source code. Since version <strong>1.6.0 r22430</strong>, it is possible to provide paths using <a href="https://en.wikipedia.org/wiki/Glob_(programming)">glob</a> format. Check <a href="#glob-example">example</a>.</li>
3535
<li><strong>type:</strong> The type of source code: "client", "server" or "shared".</li>
3636
<NoteBox type='info'>A shared script will be ran for both client and server, but separately as usual (basically adds the script twice: once for server and once for client).</NoteBox>
37-
<li><strong>cache:</strong> When the script file type is <code>client</code>, this setting controls whether the file is saved on the clients' hard drive. If you are concerned about your scripts security, make sure to read <a href="/articles/Script Security">Script security guide</a>. Default is <code>true</code>. Using <code>false</code> will mean the file is not saved.</li>
37+
<li><strong>cache:</strong> When the script file type is <code>client</code>, this setting controls whether the file is saved on the clients' hard drive. If you are concerned about your scripts security, make sure to read <a href="/articles/Script-security">Script security guide</a>. Default is <code>true</code>. Using <code>false</code> will mean the file is not saved.</li>
3838
<NoteBox type='info'><code>cache=false</code> files are started at the client first, so lua file load order might differ when mixing cache settings.</NoteBox>
3939
<li><strong>validate:</strong> If set to <code>false</code>, compatibility checks are skipped.</li>
4040
</ul>
@@ -64,7 +64,7 @@ It is also the scope of "elements". It is written in XML, which is based on HTML
6464
<li><strong>type:</strong> The type of the config file: "client" or "server".</li>
6565
</ul>
6666

67-
<li><strong>&lt;export/&gt;</strong> This exports functions from this resource, so other resources can use them with <a href="reference/call">call</a>.</li>
67+
<li><strong>&lt;export/&gt;</strong> This exports functions from this resource, so other resources can use them with <a href="/reference/call">call</a>.</li>
6868
<ul>
6969
<li><strong>function:</strong> The function name.</li>
7070
<li><strong>type:</strong> Whether function is exported server-side or client-side (valid values are: "client", "server" and "shared").</li>
@@ -79,7 +79,7 @@ It is also the scope of "elements". It is written in XML, which is based on HTML
7979
<li><strong>raw:</strong> The html file is not parsed by the Lua interpreter and is treated as binary data. Must be used for binary files (images mainly) (true/false).</li>
8080
</ul>
8181

82-
<li><strong>&lt;settings/&gt;</strong> Most gamemodes use <a href="/articles/Settings system">settings system</a> to let server admins to configure it how they like. For instance you could set round time and then use <a href="/reference/get">get</a> and <a href="/reference/set">set</a> to get the value or change it, respectively.</li>
82+
<li><strong>&lt;settings/&gt;</strong> Most gamemodes use <a href="/reference/Settings_system">settings system</a> to let server admins to configure it how they like. For instance you could set round time and then use <a href="/reference/get">get</a> and <a href="/reference/set">set</a> to get the value or change it, respectively.</li>
8383
<ul>
8484
<li><strong>&lt;setting/&gt;</strong> Resource settings can be accessed by resource and Admin panel, possible parameters are:</li>
8585
<ul>
@@ -99,7 +99,7 @@ It is also the scope of "elements". It is written in XML, which is based on HTML
9999
<li><strong>both:</strong> The minimum client and server version (instead of the previous two attributes).</li>
100100
</ul>
101101

102-
<li><strong>&lt;aclrequest/&gt;</strong> A list of <a href="/articles/Access Control List">ACL</a> rights this resource will need. Any user with admin permission can accept or reject a resource ACL request by using the command: <code>/aclrequest [list/allow/deny] &lt;resourceName&gt; [&lt;rights&gt;/all]</code></li>
102+
<li><strong>&lt;aclrequest/&gt;</strong> A list of <a href="/reference/Access_Control_List">ACL</a> rights this resource will need. Any user with admin permission can accept or reject a resource ACL request by using the command: <code>/aclrequest [list/allow/deny] &lt;resourceName&gt; [&lt;rights&gt;/all]</code></li>
103103
<ul>
104104
<li><strong>&lt;right/&gt;</strong> an individual right.</li>
105105
<ul>
@@ -108,7 +108,7 @@ It is also the scope of "elements". It is written in XML, which is based on HTML
108108
</ul>
109109
</ul>
110110

111-
<li><strong>&lt;sync_map_element_data/&gt;</strong> Controls whether map <a href="/reference/Element Data">element data</a> such as <code>PosX</code> and <code>DoubleSided</code> are transferred to the client. This data is usually not required by most gamemodes or resources. (Map Editor and Interiors require this to be not set to <code>false</code> to work). When set in a gamemode <strong>meta.xml</strong>, the setting will apply to all maps loaded by that resource.</li>
111+
<li><strong>&lt;sync_map_element_data/&gt;</strong> Controls whether map <a href="/reference/Element_data">element data</a> such as <code>PosX</code> and <code>DoubleSided</code> are transferred to the client. This data is usually not required by most gamemodes or resources. (Map Editor and Interiors require this to be not set to <code>false</code> to work). When set in a gamemode <strong>meta.xml</strong>, the setting will apply to all maps loaded by that resource.</li>
112112
<ul>
113113
<li><strong>false:</strong> Disable transfer of map element data for all resources. This can reduce map download times considerably.</li>
114114
<li><strong>true:</strong> Enable transfer of map element data for all resources. (If <code>false</code> and <code>true</code> are set in different resources, <code>true</code> will have priority and all resources will transfer map element data).</li>

0 commit comments

Comments
 (0)