diff --git a/docs/core-concepts/scripting/dimensions.mdx b/docs/core-concepts/scripting/dimensions.mdx index 634344382e..72ed44cec0 100644 --- a/docs/core-concepts/scripting/dimensions.mdx +++ b/docs/core-concepts/scripting/dimensions.mdx @@ -11,7 +11,7 @@ All you need to know about Dimensions ## What is a Dimension -Dimensions are separated worlds in the client-side, where players and actors are separated. In nanos world, they are represented by numbers. It is possible to have up to 65.535 different dimensions. +Dimensions are separated worlds in the client-side, where players and actors are separated. In nanos world, they are represented by numbers. It is possible to have up to 65,535 different dimensions. By default all players and entities are in the dimension `1`. By moving a Player to another dimension, all entities that are not from that dimension will be destroyed to that player, and all entities in the new dimension will spawn for him. @@ -44,4 +44,4 @@ By sending an entity, their "children" will be moved to that dimension too, for - When sending an **Actor**, all the other attached **Actors** will move as well. - When sending a **Player**, the **Character** will move too. - When sending a **Character**, the **Player** is not moved together, but the grabbing **Weapons** or **Props** (and attached **Actors**) will. -- When sending a **Vehicle**, all **Characters** will leave the vehicle (this will be improved soon™). \ No newline at end of file +- When sending a **Vehicle**, all **Characters** will leave the vehicle (this will be improved soon™). diff --git a/docs/core-concepts/server-manual/command-line-interface.mdx b/docs/core-concepts/server-manual/command-line-interface.mdx index 401a49b5cd..22e7df4b22 100644 --- a/docs/core-concepts/server-manual/command-line-interface.mdx +++ b/docs/core-concepts/server-manual/command-line-interface.mdx @@ -1,6 +1,6 @@ --- title: Command Line Interface - CLI -description: How to use theCommand Line Interface to install packages and update the server. +description: How to use the Command Line Interface to install packages and update the server. sidebar_position: 3 tags: [hosting] --- @@ -113,4 +113,4 @@ You can also install/update several Packages/Assets in a single command, separat install package sandbox battlefield-kill-ui ``` -::: \ No newline at end of file +::: diff --git a/docs/core-concepts/server-manual/game-panels.mdx b/docs/core-concepts/server-manual/game-panels.mdx index a310f6dc6d..64674e695e 100644 --- a/docs/core-concepts/server-manual/game-panels.mdx +++ b/docs/core-concepts/server-manual/game-panels.mdx @@ -51,7 +51,7 @@ After the nest is created, go back to the `NESTS` page and click on the button ` :::tip -Congrats! You have installed nanos world server on pterodactyl!. You can check how to configure the server below. +Congrats! You have installed nanos world server on Pterodactyl! You can check how to configure the server below. ::: diff --git a/docs/scripting-reference/classes/file.mdx b/docs/scripting-reference/classes/file.mdx index 69c75d2d66..1c46a68fd3 100644 --- a/docs/scripting-reference/classes/file.mdx +++ b/docs/scripting-reference/classes/file.mdx @@ -58,7 +58,7 @@ It's not allowed to access files outside the client's cache folder `Packages/`, The default directory is in the client's cached `Packages/.transient/` folder. -Example accessing a file from a Package (with ready-only access): `../my-package/Client/MyFile.json`. +Example accessing a file from a Package (with read-only access): `../my-package/Client/MyFile.json`. Example accessing a transient file (with write access): `MyFile.json`.