From b3cd5c40f0d34a386f5c23ead64e9e1657b28fd0 Mon Sep 17 00:00:00 2001 From: Andepthy <115411501+Andepthy@users.noreply.github.com> Date: Wed, 8 Jul 2026 15:20:20 +0800 Subject: [PATCH 1/4] Fix number formatting for dimensions Corrected the formatting of the number of dimensions from '65.535' to '65,535'. --- docs/core-concepts/scripting/dimensions.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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™). From 0ee20ae9c8587041fe7dba55da665940aca9e218 Mon Sep 17 00:00:00 2001 From: Andepthy <115411501+Andepthy@users.noreply.github.com> Date: Wed, 8 Jul 2026 15:22:19 +0800 Subject: [PATCH 2/4] Update game-panels.mdx --- docs/core-concepts/server-manual/game-panels.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. ::: From c22031d2b6043545f69304152ae5c04d3a53f30a Mon Sep 17 00:00:00 2001 From: Andepthy <115411501+Andepthy@users.noreply.github.com> Date: Wed, 8 Jul 2026 15:23:32 +0800 Subject: [PATCH 3/4] Fix typo in CLI documentation description --- docs/core-concepts/server-manual/command-line-interface.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +::: From 8de57e0bfe29810b548a490e95d9ddf69bae1b6d Mon Sep 17 00:00:00 2001 From: Andepthy <115411501+Andepthy@users.noreply.github.com> Date: Wed, 8 Jul 2026 15:24:37 +0800 Subject: [PATCH 4/4] Fix typo in file access description --- docs/scripting-reference/classes/file.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`.