From 90754d3a917ed651a4254faed8c0de09283f0a7a Mon Sep 17 00:00:00 2001 From: Spongecade Date: Wed, 27 Sep 2023 11:20:35 -0500 Subject: [PATCH] Update Minecraft wiki references (#989) --- source/plugin/blocks/concepts.rst | 2 +- source/plugin/text/text.rst | 2 +- source/server/getting-started/configuration/index.rst | 2 +- source/server/getting-started/migrating.rst | 2 +- source/server/getting-started/port-forward.rst | 2 +- source/server/management/bans.rst | 2 +- source/server/management/permissions.rst | 6 +++--- source/server/management/whitelist.rst | 2 +- source/server/spongineer/commands.rst | 4 ++-- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/source/plugin/blocks/concepts.rst b/source/plugin/blocks/concepts.rst index d8bad0dd6599..bc344fa98dec 100644 --- a/source/plugin/blocks/concepts.rst +++ b/source/plugin/blocks/concepts.rst @@ -43,7 +43,7 @@ With block properties having a known preset of possible values, these cannot be whereby there is a infinite amount of possibilities. Examples include sign text and block inventories. Minecraft's solution to this is block entities, which are Java objects that store additional data on a `Location` -the block is at in `NBT format `_. Examples of block entities are +the block is at in `NBT format `_. Examples of block entities are :javadoc:`Chest` Example use would be to receive the inventory of a chest. This can be done as follows diff --git a/source/plugin/text/text.rst b/source/plugin/text/text.rst index 8c50c228d81e..f54e751f8b43 100644 --- a/source/plugin/text/text.rst +++ b/source/plugin/text/text.rst @@ -141,7 +141,7 @@ useful when creating minigame plugins, but have a broad range of applications. .. tip:: - Read this `Minecraft wiki article `__ for help understanding + Read this `Minecraft wiki article `__ for help understanding what target selectors are in Minecraft, and how to use them. To use selectors in text, there is a component factory for Selectors. This is illustrated in the example diff --git a/source/server/getting-started/configuration/index.rst b/source/server/getting-started/configuration/index.rst index 09cfa0e2f14d..d690813cf34c 100644 --- a/source/server/getting-started/configuration/index.rst +++ b/source/server/getting-started/configuration/index.rst @@ -13,7 +13,7 @@ Configuring Sponge This article is about configuring Sponge itself; plugins will usually create their own configuration files inside the server "config" directory. -For Vanilla configuration check out the `Minecraft Wiki `__. +For Vanilla configuration check out the `Minecraft Wiki `__. Sponge Configuration Files ========================== diff --git a/source/server/getting-started/migrating.rst b/source/server/getting-started/migrating.rst index 9224af4bfb93..6004000bf7aa 100644 --- a/source/server/getting-started/migrating.rst +++ b/source/server/getting-started/migrating.rst @@ -49,7 +49,7 @@ This is how it works: the ``root`` folder of the server (which is CraftBukkit standard). #. Now the migration is performed. At this point, worlds are copied over from what we call the ``world container`` into - the folder defined in the `server.properties `__ file via the + the folder defined in the `server.properties `__ file via the ``level-name`` key. Note that the original files in the ``world container`` remain unchanged, a *copy* is made during migration. #. Bukkit puts things in weird places (with weird names), thus two important fixes have to be applied. Keep in mind that diff --git a/source/server/getting-started/port-forward.rst b/source/server/getting-started/port-forward.rst index ec2c9afce43a..2b6cfacc20ff 100644 --- a/source/server/getting-started/port-forward.rst +++ b/source/server/getting-started/port-forward.rst @@ -15,7 +15,7 @@ IP address of your computer. UDP and TCP are the protocols that must be forwarde .. tip:: You may change which port is used by editing the appropriate key in your - `server.properties `__. + `server.properties `__. Port Forwarding can be performed through your router's administrator panel. If you do not know how to navigate to your router's administration panel, conduct an internet search for specific instructions on port forwarding for your router. diff --git a/source/server/management/bans.rst b/source/server/management/bans.rst index 604592db19c8..efe03f354749 100644 --- a/source/server/management/bans.rst +++ b/source/server/management/bans.rst @@ -16,4 +16,4 @@ list of banned IP addresses is available using the command ``/banlist ips`` A ban can be reversed using the command ``/pardon `` or ``/pardon `` -More information on Bans can be found at the `Minecraft Wiki `_. +More information on Bans can be found at the `Minecraft Wiki `_. diff --git a/source/server/management/permissions.rst b/source/server/management/permissions.rst index 1e9e311069f6..0cdb3b594bd5 100644 --- a/source/server/management/permissions.rst +++ b/source/server/management/permissions.rst @@ -10,13 +10,13 @@ Operator Level ============== Minecraft comes with a simple way to give permissions: by setting users as operator (or "op" for short). General -information on op status can be found at https://minecraft.gamepedia.com/Op +information on op status can be found at https://minecraft.wiki/w/Server#Managing_and_maintaining_a_server The abilities of op permission may be adjusted by altering the ``op-permission-level`` setting in the -`server.properties `__ file. +`server.properties `__ file. A list of native Minecraft server commands available to players with op can be found at the `Minecraft Wiki -`_. +`_. .. warning:: diff --git a/source/server/management/whitelist.rst b/source/server/management/whitelist.rst index b3bde2747cc7..8b5578df846f 100644 --- a/source/server/management/whitelist.rst +++ b/source/server/management/whitelist.rst @@ -17,7 +17,7 @@ Players can be added to the whitelist through the usage of in-game :doc:`../spon - To reload the whitelist after a manual change to the file, use ``/whitelist reload`` The whitelist can also be enabled or disabled by editing the -`server.properties `__ file, +`server.properties `__ file, although this will only affect the game after server reload or restart. Permissions diff --git a/source/server/spongineer/commands.rst b/source/server/spongineer/commands.rst index 08e6b457c2ca..777fe0618d9d 100644 --- a/source/server/spongineer/commands.rst +++ b/source/server/spongineer/commands.rst @@ -82,7 +82,7 @@ Command Description Permission **Command Conflicts** In cases of command conflict, Sponge provides a primary alias mechanism to specify which command is to be used. For -example, Minecraft provides the `reload `__ command and +example, Minecraft provides the `reload `__ command and Sponge provides the `reload `__ command. To specify which command to use, prefix it with ``minecraft`` or ``sponge`` and a ``:``. So, to use Sponge's reload command above, type in ``/sponge:reload``. This approach can also be used to handle conflicts between mods and/or plugins. Do @@ -221,7 +221,7 @@ Command Description Permission | -A full list of vanilla commands can be found at: https://minecraft.gamepedia.com/Commands#List_of_commands. Permissions +A full list of vanilla commands can be found at: https://minecraft.wiki/w/Commands#List_and_summary_of_commands. Permissions for vanilla Minecraft commands on a Sponge server are of the structure ``minecraft.command.``. Command Features