From c1b52370ddb0b21a82a01020ec46a37aaf2be383 Mon Sep 17 00:00:00 2001 From: TheBrokenRail Date: Thu, 18 Feb 2021 15:01:59 -0500 Subject: [PATCH] Document Overrides Folder --- README.md | 26 ++++++-------------------- docs/DEDICATED_SERVER.md | 11 +++++++++++ docs/OVERRIDING_ASSETS.md | 6 ++++++ 3 files changed, 23 insertions(+), 20 deletions(-) create mode 100644 docs/DEDICATED_SERVER.md create mode 100644 docs/OVERRIDING_ASSETS.md diff --git a/README.md b/README.md index e9f77d0..aff1af7 100644 --- a/README.md +++ b/README.md @@ -15,23 +15,9 @@ Minecraft: Pi Edition Modding Project ### Option B: Manual Installation [View Manual Installation](docs/INSTALL.md) -## Troubleshooting -[View Troubleshooting](docs/TROUBLESHOOTING.md) - -## Dedicated Server -The dedicated server is a version of Minecraft: Pi Edition modified to run in a headless environment. It loads settings from a ``server.properties`` file. - -To use, install the ``minecraft-pi-reborn-server`` package and run ``minecraft-pi-reborn-server``. It will generate the world and ``server.properties`` in the current directory. - -This server is also compatible with MCPE Alpha v0.6.1. - -### Limitations -- Player data is not saved because of limitations with MCPE LAN worlds - - An easy workaround is to place your inventory in a chest before logging off -- Survival Mode servers are only compatible with ``minecraft-pi-reborn`` clients - -## Modding -[View Modding](docs/MODDING.md) - -## Credits -[View Credits](docs/CREDITS.md) +## Documentation +- [View Overriding Assets](docs/OVERRIDING_ASSETS.md) +- [View Troubleshooting](docs/TROUBLESHOOTING.md) +- [View Dedicated Server](docs/DEDICATED_SERVER.md) +- [View Modding](docs/MODDING.md) +- [View Credits](docs/CREDITS.md) \ No newline at end of file diff --git a/docs/DEDICATED_SERVER.md b/docs/DEDICATED_SERVER.md new file mode 100644 index 0000000..b299ed6 --- /dev/null +++ b/docs/DEDICATED_SERVER.md @@ -0,0 +1,11 @@ +# Dedicated Server +The dedicated server is a version of Minecraft: Pi Edition modified to run in a headless environment. It loads settings from a ``server.properties`` file. + +To use, install the ``minecraft-pi-reborn-server`` package and run ``minecraft-pi-reborn-server``. It will generate the world and ``server.properties`` in the current directory. + +This server is also compatible with MCPE Alpha v0.6.1. + +## Server Limitations +- Player data is not saved because of limitations with MCPE LAN worlds + - An easy workaround is to place your inventory in a chest before logging off +- Survival Mode servers are only compatible with ``minecraft-pi-reborn`` clients \ No newline at end of file diff --git a/docs/OVERRIDING_ASSETS.md b/docs/OVERRIDING_ASSETS.md new file mode 100644 index 0000000..45bacf8 --- /dev/null +++ b/docs/OVERRIDING_ASSETS.md @@ -0,0 +1,6 @@ +# Overriding Assets +Normally, Minecraft: Pi Edition assets can be easily overridden by physically replacing the file, however ``minecraft-pi-=reborn`` uses a Docker image making this much harder to do. To make overriding assets easier, ``minecraft-pi-reborn`` provides an overrides folder. Any file located in Minecraft: Pi Edition's ``data`` folder can be overridden by placing a file with the same name and path in the overrides folder. The overrides folder is located at ``~/.minecraft-pi/overrides``. + +## Examples +- ``data/images/terrain.png`` -> ``~/.minecraft-pi/overrides/images/terrain.png`` +- ``data/lang/en_US.lang`` -> ``~/.minecraft-pi/overrides/lang/en_US.lang`` \ No newline at end of file