commit 7e548fd6b0f5f205a3d907bde8cc87626d67777e935fd934db3f71fcfedf213c Author: JaniSoto Date: Mon Aug 10 14:24:14 2026 -0400 first commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e5c2d5c --- /dev/null +++ b/.gitignore @@ -0,0 +1,19 @@ +# Docker Runtime Data & Volumes +**/runtime/data/world/ +**/runtime/data/world_backup_* +**/runtime/data/logs/ +**/runtime/data/crash-reports/ +**/runtime/data/simplebackups/ +**/runtime/data/.cache/ +**/runtime/data/modernfix/ +**/runtime/data/tmp_lts_build/ +**/runtime/data/usercache.json +**/runtime/data/usernamecache.json +**/runtime/data/.rcon-cli.env +**/runtime/data/.rcon-cli.yaml +**/runtime/data/.run-forge.env +**/runtime/data/mods/*.jar +# System & IDE files +.DS_Store +*.swp +*.bak diff --git a/README.md b/README.md new file mode 100644 index 0000000..976fc58 --- /dev/null +++ b/README.md @@ -0,0 +1,38 @@ +# Minecraft Server Infrastructure Repository + +Mono-repo containing infrastructure baselines, operational runbooks, and instance profile specifications for containerized Minecraft servers. + +## Repository Architecture + +```text +. +├── .gitignore +├── README.md +├── docs/ +│ ├── infrastructure-base.md # Cloud VM, host OS, BBR, UFW, & Docker daemon baseline +│ └── operations-manual.md # Daily administration, RCON guide, log filtering, & clean state runbooks +└── instances/ + └── forge-1.20.1-survival/ # Instance profile (Forge 1.20.1) + ├── README.md # Instance spec, Compose config, JVM flags, & Mod Manifest (62 mods) + ├── mod-configs.md # Mod configuration matrix & validated TOML/JSON schemas + ├── patches/ + │ └── lts-auth/ # LTS Auth source code & in-container build script + └── runtime/ # Active Docker runtime directory + ├── docker-compose.yml # Production compose stack + └── data/ # Minecraft server data volume +``` + +## Quick Start (Deploying Instance) + +1. Navigate to the instance runtime folder: + ```bash + cd instances/forge-1.20.1-survival/runtime + ``` +2. Start the container: + ```bash + docker compose up -d + ``` +3. Stream startup logs: + ```bash + docker logs -f mc_forge_server + ``` diff --git a/docs/infrastructure-base.md b/docs/infrastructure-base.md new file mode 100644 index 0000000..f988e87 --- /dev/null +++ b/docs/infrastructure-base.md @@ -0,0 +1,48 @@ +# Infrastructure & Host Baseline Setup Guide + +## 1. Cloud Hardware Baseline +* **Provider**: Oracle Cloud Infrastructure (OCI) +* **Architecture**: Ampere A1 Flex (`aarch64` / ARM64) +* **Resources**: 4 OCPUs (Neoverse N1), 24 GB System RAM +* **Memory Strategy**: + * Container JVM Heap (`-Xmx12G -Xms12G`): Allocated per instance manifest + * Host OS & Page Cache: Minimum 12 GB reserved for kernel, filesystem page cache, and Docker daemon overhead + +--- + +## 2. Host OS & Network Optimization + +### Firewall Configuration (UFW) +Allocate port ranges to support primary and secondary instances: +```bash +# Primary Instance Ports (Java + Simple Voice Chat) +sudo ufw allow 25565/tcp comment 'MC Java Port - Primary Instance' +sudo ufw allow 24454/udp comment 'Voice Chat Port - Primary Instance' + +# Secondary Instance Ports +sudo ufw allow 25566/tcp comment 'MC Java Port - Secondary Instance' +sudo ufw allow 24455/udp comment 'Voice Chat Port - Secondary Instance' + +sudo ufw enable +``` + +### Linux Kernel TCP Optimization (BBR + FQ) +Enable Bottleneck Bandwidth and RTT (BBR) congestion control to minimize network latency: +```bash +sudo modprobe tcp_bbr +sudo bash -c 'cat < /etc/sysctl.d/99-minecraft.conf +net.core.default_qdisc=fq +net.ipv4.tcp_congestion_control=bbr +EOF' +sudo sysctl --system +``` + +--- + +## 3. Host Ownership Safeguard + +Ensure host user retains ownership of container data to prevent `PermissionError (EACCES)`: +```bash +sudo chown -R $USER:$USER ./data +chmod -R u+rwX ./data +``` diff --git a/docs/operations-manual.md b/docs/operations-manual.md new file mode 100644 index 0000000..6aee7ef --- /dev/null +++ b/docs/operations-manual.md @@ -0,0 +1,103 @@ +# Server Operations & Administration Manual + +## 1. Instance Target Context +Set the active container target in your shell session: +```bash +export INSTANCE_NAME="mc_forge_server" +``` + +--- + +## 2. Data Preservation Reference Matrix + +When performing world resets or maintenance, classify directories according to this matrix: + +| Category | Directory / File Path | Purpose | Action on Reset | +| :--- | :--- | :--- | :--- | +| **Immutable** | `data/config/` | Mod configuration files | **Preserve** | +| **Immutable** | `data/mods/` | Server mod JAR files | **Preserve** | +| **Immutable** | `data/server.properties` | Generated server settings | **Preserve** | +| **Immutable** | `data/eula.txt` | EULA agreement file | **Preserve** | +| **Volatile** | `data/world/` | Dynamic terrain & player data | Delete to reset seed | +| **Volatile** | `data/logs/` | Server console log files | Safe to purge | +| **Volatile** | `data/crash-reports/` | Crash stack traces | Safe to purge | +| **Volatile** | `data/simplebackups/` | World backup archives | Store or purge | +| **Volatile** | `data/.cache/` | Mod resource cache | Safe to purge | +| **Volatile** | `data/modernfix/` | Structure cache files | Safe to purge | + +--- + +## 3. Lifecycle & Reset Workflows + +### Clean World Reset (Preserving Configs & Mods) +```bash +docker stop $INSTANCE_NAME +mv data/world data/world_backup_$(date +%Y%m%d_%H%M%S) +docker start $INSTANCE_NAME +``` + +### Targeted Dimensional Wipes +```bash +docker stop $INSTANCE_NAME +rm -rf data/world/DIM-1 # Nether +rm -rf data/world/DIM1 # End +docker start $INSTANCE_NAME +``` + +### Full Nuclear Server Reset +```bash +docker compose down +rm -rf data/world data/logs/* data/crash-reports/* data/.cache data/modernfix/structureCacheV1 data/usercache.json data/banned-players.json data/banned-ips.json data/ops.json +docker compose up -d +``` + +### Host File Ownership Recovery +```bash +sudo chown -R $USER:$USER ./data +chmod -R u+rwX ./data +``` + +--- + +## 4. Diagnostics & Telemetry + +### Log Filter Pipeline (Errors & Warnings) +```bash +docker logs $INSTANCE_NAME 2>&1 | grep -iE "ERROR|WARN|Exception|Fatal|Failed|Caused by" | tail -n 60 +``` + +### Health & Container Status Check +```bash +docker ps -f "name=$INSTANCE_NAME" --format "table {{.Names}}\t{{.Status}}\t{{.Ports}}" +``` + +--- + +## 5. RCON Command Reference + +### Chunky Pre-Generation +```bash +docker exec -i $INSTANCE_NAME rcon-cli "chunky shape circle" +docker exec -i $INSTANCE_NAME rcon-cli "chunky center 0 0" +docker exec -i $INSTANCE_NAME rcon-cli "chunky radius 4000" +docker exec -i $INSTANCE_NAME rcon-cli "chunky start" +docker exec -i $INSTANCE_NAME rcon-cli "chunky progress" +``` + +### Performance Profiling (spark) +```bash +docker exec -i $INSTANCE_NAME rcon-cli "spark profiler --timeout 30" +docker exec -i $INSTANCE_NAME rcon-cli "spark healthreport" +``` + +### Claim Management (FLAN) +```bash +docker exec -i $INSTANCE_NAME rcon-cli "flan reload" +``` + +### Moderation & Player Control +```bash +docker exec -i $INSTANCE_NAME rcon-cli "whitelist add " +docker exec -i $INSTANCE_NAME rcon-cli "tp " +docker exec -i $INSTANCE_NAME rcon-cli "gamerule keepInventory true" +``` diff --git a/instances/forge-1.20.1-survival/README.md b/instances/forge-1.20.1-survival/README.md new file mode 100644 index 0000000..27efd4a --- /dev/null +++ b/instances/forge-1.20.1-survival/README.md @@ -0,0 +1,126 @@ +# Instance Specification: Forge 1.20.1 Survival Modpack + +## 1. Overview & Compose Profile +* **Instance ID**: `forge-1.20.1-survival` +* **Container Name**: `mc_forge_server` +* **Minecraft Version**: `1.20.1` +* **Mod Loader**: Forge (`47.4.10`) +* **Java Runtime**: OpenJDK 17 (`itzg/minecraft-server:java17`) + +> **JVM Flag Rule**: `-XX:+UnlockExperimentalVMOptions` must precede experimental flags in `JVM_OPTS` to avoid JVM start failure on OpenJDK 17. + +### `docker-compose.yml` Reference + +```yaml +services: + mc: + image: itzg/minecraft-server:java17 + container_name: mc_forge_server + restart: unless-stopped + ports: + - "25565:25565" + - "24454:24454/udp" + environment: + EULA: "TRUE" + TYPE: "FORGE" + VERSION: "1.20.1" + MEMORY: "12G" + + VIEW_DISTANCE: "8" + SIMULATION_DISTANCE: "6" + NETWORK_COMPRESSION_THRESHOLD: "256" + MAX_TICK_TIME: "60000" + SYNC_CHUNK_WRITES: "FALSE" + ENABLE_STATUS: "TRUE" + MOTD: "MC SotoHome!" + MAX_PLAYERS: "15" + DIFFICULTY: "hard" + ONLINE_MODE: "FALSE" + + JVM_OPTS: >- + -XX:+UnlockExperimentalVMOptions + -XX:+UseG1GC + -XX:MaxGCPauseMillis=50 + -XX:G1HeapRegionSize=8M + -XX:G1ReservePercent=15 + -XX:InitiatingHeapOccupancyPercent=45 + -XX:G1MixedGCCountTarget=4 + -XX:G1HeapWastePercent=5 + -XX:G1NewSizePercent=30 + -XX:G1MaxNewSizePercent=40 + -XX:SurvivorRatio=8 + -XX:MaxTenuringThreshold=1 + -XX:+DisableExplicitGC + -XX:+AlwaysPreTouch + volumes: + - ./data:/data +``` + +--- + +## 2. Server Mod Manifest (62 Mods) + +```text +[forge]ctov-3.4.14.jar +ad_astra-forge-1.20.1-1.15.20.jar +ad_astra_extra_additions-1.20.1-1.1.1.jar +ad_astra_more_structures-1.0.1-forge.jar +alexsmobs-1.22.9.jar +architectury-9.2.14-forge.jar +bettercombat-forge-1.9.0+1.20.1.jar +Botania-1.20.1-454-FORGE.jar +botarium-forge-1.20.1-2.3.4.jar +Chunky-1.3.146.jar +citadel-2.6.3-1.20.1.jar +cloth-config-11.1.136-forge.jar +Clumps-forge-1.20.1-12.0.0.4.jar +connectivity-1.20.1-7.6.jar +corpse-forge-1.20.1-1.0.23.jar +create-1.20.1-6.0.8.jar +create_ad_astra_recipes-1.0.0-forge-1.20.1.jar +createaddition-1.20.1-1.3.3.jar +cupboard-1.20.1-3.7.jar +curios-forge-5.14.1+1.20.1.jar +decocraft-3.0.4-1.20.1-slim.jar +FarmersDelight-1.20.1-1.3.2.jar +ferritecore-6.0.1-forge.jar +flan-1.20.1-1.11.16-forge.jar +geckolib-forge-1.20.1-4.8.4.jar +ImmersiveEngineering-1.20.1-10.2.0-183.jar +improvedmobs-1.20.1-1.13.7-forge.jar +irons_lib-1.20.1-2.1.0.jar +irons_spellbooks-1.20.1-3.16.2.jar +Jade-1.20.1-Forge-11.13.3.jar +jei-1.20.1-forge-15.48.0.180.jar +journeymap-forge-1.20.1-6.0.0.jar +Krypton Reno-forge-1.20.1-26.1.1-1.20.1.jar +lithostitched-forge-1.20.1-1.4.11.jar +locks_reforged-1.6.1.jar +lts_auth-1.0.1+mc1.20.1.jar +LuckPerms-Forge-5.4.102.jar +majrusz-library-forge-1.20.1-7.0.8.jar +majruszs-difficulty-forge-1.20.1-1.9.10.jar +mcda-5.0.2.jar +mcdw-9.0.4.jar +minecraft-comes-alive-7.6.28-beta.10+1.20.1-universal.jar +modernfix-forge-5.27.66+mc1.20.1.jar +Nullscape_1.20.x_v1.2.8.jar +Patchouli-1.20.1-85-FORGE.jar +perspatium-1.20.1-1.2.0.jar +planets+-bv1.7.5-1.20x.jar +player-animation-lib-forge-1.0.2-rc1+1.20.jar +resourcefulconfig-forge-1.20.1-2.1.3.jar +resourcefullib-forge-1.20.1-2.1.29.jar +SimpleBackups-1.20.1-3.1.24.jar +sophisticatedbackpacks-1.20.1-3.24.63.2049.jar +sophisticatedcore-1.20.1-1.3.75.2231.jar +spark-1.10.53-forge.jar +tectonic-3.0.17-forge-1.20.1.jar +tenshilib-1.20.1-1.7.6-forge.jar +Terralith_1.20.x_v2.5.4.jar +voicechat-forge-1.20.1-2.6.22.jar +YungsApi-1.20-Forge-4.0.6.jar +YungsBetterDungeons-1.20-Forge-4.0.4.jar +YungsBetterMineshafts-1.20-Forge-4.0.4.jar +YungsBetterStrongholds-1.20-Forge-4.0.3.jar +``` diff --git a/instances/forge-1.20.1-survival/mod-configs.md b/instances/forge-1.20.1-survival/mod-configs.md new file mode 100644 index 0000000..1247e45 --- /dev/null +++ b/instances/forge-1.20.1-survival/mod-configs.md @@ -0,0 +1,83 @@ +# Mod Configurations Matrix & Schemas + +## Summary Matrix + +| Mod | Config File Path | Key Setting | Value | Purpose | +| :--- | :--- | :--- | :--- | :--- | +| **LTS Auth** | `runtime/data/mods/lts_auth-*.jar` | `m_6842_`, Event Cancellation | `36000` ticks | Ingame auth, invulnerability lock, 30m timeout | +| **FLAN** | `runtime/data/config/flan/flan_config.json` | `Visitor` rights | `break: false`, `open_container: true` | Anti-griefing with permitted container access | +| **Locks Reforged** | `runtime/data/config/locks-common.toml` | `strictLockPicking` | `true` | Enforces tier-matched lockpicking | +| **Improved Mobs** | `runtime/data/config/improvedmobs/common.toml` | `"Enable difficulty scaling"` | `false` | Disables time-based scaling & HUD banner | +| **Majrusz Difficulty** | `runtime/data/config/majruszsdifficulty.json` | `is_per_player_difficulty_enabled` | `true` | Isolated per-player milestone progression | +| **Create Addition** | `runtime/data/config/createaddition-common.toml` | `generator_efficiency` | `0.5` | Tech power generation rebalance | +| **Sophisticated Backpacks** | `runtime/data/config/sophisticatedbackpacks-common.toml` | `enabledItems` | Tier 3/4 upgrades = `false` | Cap portable storage capacity | +| **JourneyMap** | `runtime/data/journeymap/server/6.0/*.config` | `radarEnabled` | `"Disabled"` | Disable radar and wallhacks | + +--- + +## Validated Configuration Code Snippets + +### 1. Locks Reforged (`runtime/data/config/locks-common.toml`) +```toml +"Lock Generation Chance" = 1.0 +"Generation Enchant Chance" = 0.4 +"Generated Locks" = ["locks:wood_lock", "locks:copper_lock", "locks:iron_lock", "locks:steel_lock", "locks:gold_lock", "locks:diamond_lock", "locks:netherite_lock"] +"Generated Lock Chances" = [3, 3, 3, 2, 2, 1, 1] + +[lock_picking] +strictLockPicking = true +``` + +### 2. Improved Mobs (`runtime/data/config/improvedmobs/common.toml`) +```toml +[general] +"Enable difficulty scaling" = false + +[ai] +"Breaker Chance" = 0.0 +"Break BlockEntities" = false +``` + +### 3. FLAN (`runtime/data/config/flan/flan_config.json`) +```json +{ + "defaultGroups": { + "Visitor": { + "flan:open_container": true, + "flan:break": false, + "flan:place": false, + "flan:explosions": false, + "flan:bucket": false + } + } +} +``` + +### 4. Sophisticated Backpacks (`runtime/data/config/sophisticatedbackpacks-common.toml`) +```toml +[common] +chestLootEnabled = true + +[enabledItems] +"sophisticatedbackpacks:stack_upgrade_tier_3|false" = false +"sophisticatedbackpacks:stack_upgrade_tier_4|false" = false +``` + +### 5. Majrusz's Progressive Difficulty (`runtime/data/config/majruszsdifficulty.json`) +```json +{ + "game_stages": { + "is_per_player_difficulty_enabled": true, + "list": [ + { + "id": "expert", + "triggers": { "dimensions": ["minecraft:the_nether"] } + }, + { + "id": "master", + "triggers": { "dimensions": ["minecraft:the_end"] } + } + ] + } +} +``` diff --git a/instances/forge-1.20.1-survival/patches/lts-auth/LoginCommand.java b/instances/forge-1.20.1-survival/patches/lts-auth/LoginCommand.java new file mode 100644 index 0000000..f6c300f --- /dev/null +++ b/instances/forge-1.20.1-survival/patches/lts-auth/LoginCommand.java @@ -0,0 +1,49 @@ +package com.rtxbb.lts_auth.command; + +import com.mojang.brigadier.CommandDispatcher; +import com.mojang.brigadier.arguments.StringArgumentType; +import com.mojang.brigadier.context.CommandContext; +import com.rtxbb.lts_auth.LtsAuthMod; +import com.rtxbb.lts_auth.manager.AuthManager; +import net.minecraft.commands.CommandSourceStack; +import net.minecraft.commands.Commands; +import net.minecraft.network.chat.Component; +import net.minecraft.server.level.ServerPlayer; + +public class LoginCommand { + public static void register(CommandDispatcher dispatcher) { + dispatcher.register( + Commands.m_82127_("login") + .then(Commands.m_82129_("password", StringArgumentType.string()) + .executes(LoginCommand::execute) + ) + ); + } + + private static int execute(CommandContext ctx) { + try { + ServerPlayer player = ctx.getSource().m_81375_(); + String password = StringArgumentType.getString(ctx, "password"); + + if (!AuthManager.getInstance().isRegistered(player.m_20148_())) { + ctx.getSource().m_81352_(Component.m_237113_(LtsAuthMod.messages().getColored("messages.not_registered"))); + return 0; + } + + if (AuthManager.getInstance().isAuthenticated(player.m_20148_())) { + ctx.getSource().m_81352_(Component.m_237113_(LtsAuthMod.messages().getColored("messages.already_logged_in"))); + return 0; + } + + if (AuthManager.getInstance().login(player, password)) { + player.m_6842_(false); + return 1; + } else { + ctx.getSource().m_81352_(Component.m_237113_(LtsAuthMod.messages().getColored("messages.invalid_password"))); + return 0; + } + } catch (Exception e) { + return 0; + } + } +} diff --git a/instances/forge-1.20.1-survival/patches/lts-auth/LtsAuthMod.java b/instances/forge-1.20.1-survival/patches/lts-auth/LtsAuthMod.java new file mode 100644 index 0000000..f47cd64 --- /dev/null +++ b/instances/forge-1.20.1-survival/patches/lts-auth/LtsAuthMod.java @@ -0,0 +1,165 @@ +package com.rtxbb.lts_auth; + +import com.rtxbb.lts_auth.command.LoginCommand; +import com.rtxbb.lts_auth.command.RegisterCommand; +import com.rtxbb.lts_auth.config.MessageManager; +import com.rtxbb.lts_auth.manager.AuthManager; +import com.mojang.logging.LogUtils; +import net.minecraft.network.chat.Component; +import net.minecraft.server.level.ServerPlayer; +import net.minecraftforge.common.MinecraftForge; +import net.minecraftforge.event.RegisterCommandsEvent; +import net.minecraftforge.event.TickEvent; +import net.minecraftforge.event.entity.item.ItemTossEvent; +import net.minecraftforge.event.entity.living.LivingAttackEvent; +import net.minecraftforge.event.entity.living.LivingHurtEvent; +import net.minecraftforge.event.entity.player.EntityItemPickupEvent; +import net.minecraftforge.event.entity.player.PlayerEvent; +import net.minecraftforge.event.entity.player.PlayerInteractEvent; +import net.minecraftforge.event.level.BlockEvent; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.fml.loading.FMLPaths; +import org.slf4j.Logger; + +import java.util.HashMap; +import java.util.Map; +import java.util.UUID; + +@Mod("lts_auth") +public class LtsAuthMod { + public static final String MODID = "lts_auth"; + private static final Logger LOGGER = LogUtils.getLogger(); + private static final MessageManager MESSAGE_MANAGER = new MessageManager(FMLPaths.CONFIGDIR.get().resolve("lts_auth").resolve("messages.yml")); + private final Map joinTicks = new HashMap<>(); + + public LtsAuthMod() { + MESSAGE_MANAGER.load(); + MinecraftForge.EVENT_BUS.register(this); + LOGGER.info(messages().get("messages.mod_initialized")); + } + + public static MessageManager messages() { + return MESSAGE_MANAGER; + } + + @SubscribeEvent + public void onRegisterCommands(RegisterCommandsEvent event) { + RegisterCommand.register(event.getDispatcher()); + LoginCommand.register(event.getDispatcher()); + } + + @SubscribeEvent + public void onPlayerJoin(PlayerEvent.PlayerLoggedInEvent event) { + if (event.getEntity() instanceof ServerPlayer player) { + AuthManager.getInstance().logout(player.m_20148_()); + joinTicks.put(player.m_20148_(), 0); + if (!AuthManager.getInstance().isAuthenticated(player.m_20148_())) { + player.m_6842_(true); + } + if (AuthManager.getInstance().isRegistered(player.m_20148_())) { + player.m_213846_(Component.m_237113_(messages().getColored("messages.login_prompt"))); + } else { + player.m_213846_(Component.m_237113_(messages().getColored("messages.register_prompt"))); + } + } + } + + @SubscribeEvent + public void onPlayerQuit(PlayerEvent.PlayerLoggedOutEvent event) { + AuthManager.getInstance().logout(event.getEntity().m_20148_()); + joinTicks.remove(event.getEntity().m_20148_()); + } + + @SubscribeEvent + public void onServerTick(TickEvent.ServerTickEvent event) { + if (event.phase == TickEvent.Phase.END) { + Map ticksCopy = new HashMap<>(joinTicks); + for (UUID uuid : ticksCopy.keySet()) { + if (!AuthManager.getInstance().isAuthenticated(uuid)) { + int ticks = joinTicks.get(uuid) + 1; + joinTicks.put(uuid, ticks); + ServerPlayer player = event.getServer().m_6846_().m_11259_(uuid); + if (player != null) { + if (ticks % 100 == 0) { + if (AuthManager.getInstance().isRegistered(uuid)) { + player.m_240418_(Component.m_237113_(messages().getColored("messages.login_reminder")), true); + } else { + player.m_240418_(Component.m_237113_(messages().getColored("messages.register_reminder")), true); + } + } + if (ticks >= 36000) { + player.f_8906_.m_9942_(Component.m_237113_(messages().getColored("messages.timeout_kick"))); + } + } + } else { + joinTicks.remove(uuid); + } + } + } + } + + @SubscribeEvent + public void onPlayerMove(TickEvent.PlayerTickEvent event) { + if (event.phase == TickEvent.Phase.START && event.player instanceof ServerPlayer player) { + if (!AuthManager.getInstance().isAuthenticated(player.m_20148_())) { + player.m_6842_(true); + player.m_6021_(player.m_20185_(), player.m_20186_(), player.m_20189_()); + } + } + } + + @SubscribeEvent + public void onPlayerInteract(PlayerInteractEvent event) { + if (event.getEntity() instanceof ServerPlayer player) { + if (!AuthManager.getInstance().isAuthenticated(player.m_20148_())) { + event.setCanceled(true); + } + } + } + + @SubscribeEvent + public void onLivingHurt(LivingHurtEvent event) { + if (event.getEntity() instanceof ServerPlayer player) { + if (!AuthManager.getInstance().isAuthenticated(player.m_20148_())) { + event.setCanceled(true); + } + } + } + + @SubscribeEvent + public void onLivingAttack(LivingAttackEvent event) { + if (event.getEntity() instanceof ServerPlayer player) { + if (!AuthManager.getInstance().isAuthenticated(player.m_20148_())) { + event.setCanceled(true); + } + } + } + + @SubscribeEvent + public void onBlockBreak(BlockEvent.BreakEvent event) { + if (event.getPlayer() instanceof ServerPlayer player) { + if (!AuthManager.getInstance().isAuthenticated(player.m_20148_())) { + event.setCanceled(true); + } + } + } + + @SubscribeEvent + public void onItemPickup(EntityItemPickupEvent event) { + if (event.getEntity() instanceof ServerPlayer player) { + if (!AuthManager.getInstance().isAuthenticated(player.m_20148_())) { + event.setCanceled(true); + } + } + } + + @SubscribeEvent + public void onItemToss(ItemTossEvent event) { + if (event.getPlayer() instanceof ServerPlayer player) { + if (!AuthManager.getInstance().isAuthenticated(player.m_20148_())) { + event.setCanceled(true); + } + } + } +} diff --git a/instances/forge-1.20.1-survival/patches/lts-auth/build.py b/instances/forge-1.20.1-survival/patches/lts-auth/build.py new file mode 100644 index 0000000..e7d3de0 --- /dev/null +++ b/instances/forge-1.20.1-survival/patches/lts-auth/build.py @@ -0,0 +1,52 @@ +import os, shutil, subprocess, zipfile + +JAR_HOST_PATH = "../../runtime/data/mods/lts_auth-1.0.1+mc1.20.1.jar" +BAK_HOST_PATH = "../../runtime/data/mods/lts_auth-1.0.1+mc1.20.1.jar.bak" +TMP_HOST_DIR = "../../runtime/data/tmp_lts_build" +TMP_CONTAINER_DIR = "/data/tmp_lts_build" +CONTAINER_NAME = "mc_forge_server" + +def run_cmd(cmd): + res = subprocess.run(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) + if res.returncode != 0: + print("Command failed:", cmd) + print("Stderr:", res.stderr) + print("Stdout:", res.stdout) + return res.returncode == 0 + +def cleanup_tmp(): + run_cmd(f"docker exec -u 0 -i {CONTAINER_NAME} rm -rf {TMP_CONTAINER_DIR}") + +def prepare_tmp(): + cleanup_tmp() + run_cmd(f"docker exec -u 0 -i {CONTAINER_NAME} mkdir -p {TMP_CONTAINER_DIR}") + run_cmd(f"docker exec -u 0 -i {CONTAINER_NAME} chmod -R 777 {TMP_CONTAINER_DIR}") + +if os.path.exists(JAR_HOST_PATH): + if not os.path.exists(BAK_HOST_PATH): + shutil.copyfile(JAR_HOST_PATH, BAK_HOST_PATH) + + prepare_tmp() + + with zipfile.ZipFile(JAR_HOST_PATH, "r") as z: + z.extractall(TMP_HOST_DIR) + + run_cmd(f"docker exec -u 0 -i {CONTAINER_NAME} apt-get update >/dev/null 2>&1") + run_cmd(f"docker exec -u 0 -i {CONTAINER_NAME} apt-get install -y openjdk-17-jdk-headless >/dev/null 2>&1") + run_cmd(f"docker exec -u 0 -i {CONTAINER_NAME} chmod -R 777 {TMP_CONTAINER_DIR}") + + compile_cmd = f'docker exec -i {CONTAINER_NAME} bash -c \'CP=$(find /data/libraries /data/mods -name "*.jar" | tr "\\n" ":"); javac -cp "$CP" -d {TMP_CONTAINER_DIR} {TMP_CONTAINER_DIR}/src/com/rtxbb/lts_auth/LtsAuthMod.java {TMP_CONTAINER_DIR}/src/com/rtxbb/lts_auth/command/LoginCommand.java\'' + if run_cmd(compile_cmd): + print("Compilation successful! Re-zipping mod JAR...") + run_cmd(f"docker exec -u 0 -i {CONTAINER_NAME} chmod -R 777 {TMP_CONTAINER_DIR}") + run_cmd(f"docker exec -u 0 -i {CONTAINER_NAME} chmod 777 /data/mods/lts_auth-1.0.1+mc1.20.1.jar") + with zipfile.ZipFile(JAR_HOST_PATH, "w", zipfile.ZIP_DEFLATED) as zip_out: + for root, _, files in os.walk(TMP_HOST_DIR): + for file in files: + if file.endswith(".java") or "src" in root: + continue + full_path = os.path.join(root, file) + arcname = os.path.relpath(full_path, TMP_HOST_DIR) + zip_out.write(full_path, arcname) + cleanup_tmp() + print("JAR successfully updated.") diff --git a/instances/forge-1.20.1-survival/runtime/data/.forge-manifest.json b/instances/forge-1.20.1-survival/runtime/data/.forge-manifest.json new file mode 100644 index 0000000..ce60b5c --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/.forge-manifest.json @@ -0,0 +1 @@ +{"@type":"me.itzg.helpers.forge.ForgeManifest","timestamp":"2026-08-09T01:40:51.082107423Z","files":null,"minecraftVersion":"1.20.1","forgeVersion":"47.4.10","serverEntry":"run.sh"} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/.local/share/resourcefullib/README.txt b/instances/forge-1.20.1-survival/runtime/data/.local/share/resourcefullib/README.txt new file mode 100644 index 0000000..9cdbf79 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/.local/share/resourcefullib/README.txt @@ -0,0 +1,2 @@ +This is created by ResourcefulLib for usage by mods. +This directory is used to store data/caches for mods. diff --git a/instances/forge-1.20.1-survival/runtime/data/banned-ips.json b/instances/forge-1.20.1-survival/runtime/data/banned-ips.json new file mode 100644 index 0000000..71ea9c9 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/banned-ips.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/banned-players.json b/instances/forge-1.20.1-survival/runtime/data/banned-players.json new file mode 100644 index 0000000..71ea9c9 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/banned-players.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/eula.txt b/instances/forge-1.20.1-survival/runtime/data/eula.txt new file mode 100644 index 0000000..9197ce2 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/eula.txt @@ -0,0 +1,4 @@ +# Generated via Docker +# Sun 09 Aug 2026 01:40:32 AM UTC +eula=true + diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~earth_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~earth_orbit.config new file mode 100644 index 0000000..650fadb --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~earth_orbit.config @@ -0,0 +1,31 @@ +{ + "enabled": "false", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "ad_astra", + "f_135805_": "earth_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "true", + "animalRadarEnabled": "true", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~glacio.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~glacio.config new file mode 100644 index 0000000..34d1ec7 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~glacio.config @@ -0,0 +1,31 @@ +{ + "enabled": "false", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "ad_astra", + "f_135805_": "glacio" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "true", + "animalRadarEnabled": "true", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~glacio_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~glacio_orbit.config new file mode 100644 index 0000000..cfdcb17 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~glacio_orbit.config @@ -0,0 +1,31 @@ +{ + "enabled": "false", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "ad_astra", + "f_135805_": "glacio_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "true", + "animalRadarEnabled": "true", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~mars.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~mars.config new file mode 100644 index 0000000..b39bdfc --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~mars.config @@ -0,0 +1,31 @@ +{ + "enabled": "false", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "ad_astra", + "f_135805_": "mars" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "true", + "animalRadarEnabled": "true", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~mars_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~mars_orbit.config new file mode 100644 index 0000000..8b78908 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~mars_orbit.config @@ -0,0 +1,31 @@ +{ + "enabled": "false", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "ad_astra", + "f_135805_": "mars_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "true", + "animalRadarEnabled": "true", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~mercury.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~mercury.config new file mode 100644 index 0000000..131aa39 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~mercury.config @@ -0,0 +1,31 @@ +{ + "enabled": "false", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "ad_astra", + "f_135805_": "mercury" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "true", + "animalRadarEnabled": "true", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~mercury_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~mercury_orbit.config new file mode 100644 index 0000000..1ad9fa2 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~mercury_orbit.config @@ -0,0 +1,31 @@ +{ + "enabled": "false", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "ad_astra", + "f_135805_": "mercury_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "true", + "animalRadarEnabled": "true", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~moon.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~moon.config new file mode 100644 index 0000000..e91b6d1 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~moon.config @@ -0,0 +1,31 @@ +{ + "enabled": "false", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "ad_astra", + "f_135805_": "moon" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "true", + "animalRadarEnabled": "true", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~moon_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~moon_orbit.config new file mode 100644 index 0000000..664b8d9 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~moon_orbit.config @@ -0,0 +1,31 @@ +{ + "enabled": "false", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "ad_astra", + "f_135805_": "moon_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "true", + "animalRadarEnabled": "true", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~venus.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~venus.config new file mode 100644 index 0000000..a564338 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~venus.config @@ -0,0 +1,31 @@ +{ + "enabled": "false", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "ad_astra", + "f_135805_": "venus" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "true", + "animalRadarEnabled": "true", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~venus_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~venus_orbit.config new file mode 100644 index 0000000..8fe2ea6 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.ad_astra~venus_orbit.config @@ -0,0 +1,31 @@ +{ + "enabled": "false", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "ad_astra", + "f_135805_": "venus_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "true", + "animalRadarEnabled": "true", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.default.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.default.config new file mode 100644 index 0000000..8cdfc30 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.default.config @@ -0,0 +1,21 @@ +{ + "enabled": "true", + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.global.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.global.config new file mode 100644 index 0000000..c2b9710 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.global.config @@ -0,0 +1,40 @@ +{ + "journeymapEnabled": "true", + "useWorldId": "true", + "viewOnlyServerProperties": "true", + "allowMultiplayerSettings": "ALL", + "worldPlayerRadar": "ALL", + "worldPlayerRadarUpdateTime": "5", + "seeUndergroundPlayers": "ALL", + "hideOps": "false", + "hideSpectators": "false", + "allowDeathPoints": "true", + "showInGameBeacons": "true", + "allowWaypoints": "true", + "waypointTeleportOnly": "false", + "radarLateralDistance": "512", + "radarVerticalDistance": "320", + "maxAnimalsData": "128", + "maxAmbientCreaturesData": "128", + "maxMobsData": "128", + "maxPlayersData": "128", + "maxVillagersData": "128", + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "true", + "animalRadarEnabled": "true", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.irons_spellbooks~pocket_dimension.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.irons_spellbooks~pocket_dimension.config new file mode 100644 index 0000000..0dd4507 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.irons_spellbooks~pocket_dimension.config @@ -0,0 +1,31 @@ +{ + "enabled": "false", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "irons_spellbooks", + "f_135805_": "pocket_dimension" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "true", + "animalRadarEnabled": "true", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.minecraft~overworld.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.minecraft~overworld.config new file mode 100644 index 0000000..faf92fd --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.minecraft~overworld.config @@ -0,0 +1,31 @@ +{ + "enabled": "false", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "minecraft", + "f_135805_": "overworld" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "true", + "animalRadarEnabled": "true", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.minecraft~the_end.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.minecraft~the_end.config new file mode 100644 index 0000000..5ce791d --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.minecraft~the_end.config @@ -0,0 +1,31 @@ +{ + "enabled": "false", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "minecraft", + "f_135805_": "the_end" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "true", + "animalRadarEnabled": "true", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.minecraft~the_nether.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.minecraft~the_nether.config new file mode 100644 index 0000000..8b1dbb6 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.minecraft~the_nether.config @@ -0,0 +1,31 @@ +{ + "enabled": "false", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "minecraft", + "f_135805_": "the_nether" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "true", + "animalRadarEnabled": "true", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~atmas.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~atmas.config new file mode 100644 index 0000000..969eadd --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~atmas.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:atmas] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "atmas" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~atmas_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~atmas_orbit.config new file mode 100644 index 0000000..eac27fa --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~atmas_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:atmas_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "atmas_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~callisto.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~callisto.config new file mode 100644 index 0000000..d5ae2ae --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~callisto.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:callisto] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "callisto" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~callisto_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~callisto_orbit.config new file mode 100644 index 0000000..0e8364a --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~callisto_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:callisto_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "callisto_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~charon.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~charon.config new file mode 100644 index 0000000..7b0e744 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~charon.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:charon] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "charon" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~charon_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~charon_orbit.config new file mode 100644 index 0000000..7a319bc --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~charon_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:charon_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "charon_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~diater.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~diater.config new file mode 100644 index 0000000..44e8f47 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~diater.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:diater] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "diater" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~diater_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~diater_orbit.config new file mode 100644 index 0000000..86dfe62 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~diater_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:diater_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "diater_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~dread.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~dread.config new file mode 100644 index 0000000..20a2e6d --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~dread.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:dread] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "dread" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~dread_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~dread_orbit.config new file mode 100644 index 0000000..c784075 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~dread_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:dread_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "dread_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~dune.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~dune.config new file mode 100644 index 0000000..331cab9 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~dune.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:dune] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "dune" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~dune_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~dune_orbit.config new file mode 100644 index 0000000..ac824e7 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~dune_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:dune_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "dune_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~dytiona.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~dytiona.config new file mode 100644 index 0000000..8e89e71 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~dytiona.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:dytiona] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "dytiona" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~dytiona_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~dytiona_orbit.config new file mode 100644 index 0000000..669a7c4 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~dytiona_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:dytiona_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "dytiona_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~eclipsa.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~eclipsa.config new file mode 100644 index 0000000..9a8afe1 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~eclipsa.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:eclipsa] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "eclipsa" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~eclipsa_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~eclipsa_orbit.config new file mode 100644 index 0000000..46e5697 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~eclipsa_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:eclipsa_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "eclipsa_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~enceladus.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~enceladus.config new file mode 100644 index 0000000..4dc3bdb --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~enceladus.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:enceladus] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "enceladus" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~enceladus_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~enceladus_orbit.config new file mode 100644 index 0000000..e01a75b --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~enceladus_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:enceladus_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "enceladus_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~europa.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~europa.config new file mode 100644 index 0000000..cb4001d --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~europa.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:europa] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "europa" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~europa_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~europa_orbit.config new file mode 100644 index 0000000..58eb1e5 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~europa_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:europa_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "europa_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~evedva.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~evedva.config new file mode 100644 index 0000000..17dd4f5 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~evedva.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:evedva] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "evedva" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~evedva_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~evedva_orbit.config new file mode 100644 index 0000000..e67080a --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~evedva_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:evedva_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "evedva_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~fierer.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~fierer.config new file mode 100644 index 0000000..dc89fa5 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~fierer.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:fierer] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "fierer" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~fierer_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~fierer_orbit.config new file mode 100644 index 0000000..de39673 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~fierer_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:fierer_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "fierer_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~flade.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~flade.config new file mode 100644 index 0000000..2d60991 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~flade.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:flade] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "flade" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~flade_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~flade_orbit.config new file mode 100644 index 0000000..1b87bbf --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~flade_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:flade_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "flade_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~galia.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~galia.config new file mode 100644 index 0000000..e5412d0 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~galia.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:galia] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "galia" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~galia_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~galia_orbit.config new file mode 100644 index 0000000..da02185 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~galia_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:galia_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "galia_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~ganymede.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~ganymede.config new file mode 100644 index 0000000..b712e54 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~ganymede.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:ganymede] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "ganymede" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~ganymede_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~ganymede_orbit.config new file mode 100644 index 0000000..5cbfd98 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~ganymede_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:ganymede_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "ganymede_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~glacies.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~glacies.config new file mode 100644 index 0000000..70d7242 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~glacies.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:glacies] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "glacies" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~glacies_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~glacies_orbit.config new file mode 100644 index 0000000..8a1f723 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~glacies_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:glacies_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "glacies_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~iapetus.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~iapetus.config new file mode 100644 index 0000000..abc22f3 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~iapetus.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:iapetus] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "iapetus" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~iapetus_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~iapetus_orbit.config new file mode 100644 index 0000000..00ba20a --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~iapetus_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:iapetus_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "iapetus_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~io.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~io.config new file mode 100644 index 0000000..42d92a4 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~io.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:io] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "io" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~io_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~io_orbit.config new file mode 100644 index 0000000..5ab8795 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~io_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:io_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "io_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~jada.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~jada.config new file mode 100644 index 0000000..255f706 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~jada.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:jada] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "jada" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~jada_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~jada_orbit.config new file mode 100644 index 0000000..90c8ee8 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~jada_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:jada_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "jada_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~mixeus.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~mixeus.config new file mode 100644 index 0000000..44fa209 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~mixeus.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:mixeus] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "mixeus" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~mixeus_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~mixeus_orbit.config new file mode 100644 index 0000000..ab86ad9 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~mixeus_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:mixeus_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "mixeus_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~molvon.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~molvon.config new file mode 100644 index 0000000..3ae2015 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~molvon.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:molvon] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "molvon" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~molvon_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~molvon_orbit.config new file mode 100644 index 0000000..1be73a6 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~molvon_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:molvon_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "molvon_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~pluto.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~pluto.config new file mode 100644 index 0000000..574c672 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~pluto.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:pluto] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "pluto" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~pluto_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~pluto_orbit.config new file mode 100644 index 0000000..ae19b58 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~pluto_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:pluto_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "pluto_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~reveda.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~reveda.config new file mode 100644 index 0000000..2f7dce7 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~reveda.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:reveda] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "reveda" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~reveda_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~reveda_orbit.config new file mode 100644 index 0000000..b6555d7 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~reveda_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:reveda_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "reveda_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~ringetic.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~ringetic.config new file mode 100644 index 0000000..a4f2fd6 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~ringetic.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:ringetic] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "ringetic" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~ringetic_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~ringetic_orbit.config new file mode 100644 index 0000000..4faab44 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~ringetic_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:ringetic_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "ringetic_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~sorea.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~sorea.config new file mode 100644 index 0000000..690568b --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~sorea.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:sorea] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "sorea" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~sorea_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~sorea_orbit.config new file mode 100644 index 0000000..799d3c0 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~sorea_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:sorea_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "sorea_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~soulfer.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~soulfer.config new file mode 100644 index 0000000..d2b25ef --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~soulfer.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:soulfer] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "soulfer" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~soulfer_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~soulfer_orbit.config new file mode 100644 index 0000000..69d0567 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~soulfer_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:soulfer_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "soulfer_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~titan.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~titan.config new file mode 100644 index 0000000..e3cdf09 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~titan.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:titan] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "titan" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~titan_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~titan_orbit.config new file mode 100644 index 0000000..f9aaf45 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~titan_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:titan_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "titan_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~vonic.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~vonic.config new file mode 100644 index 0000000..8246759 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~vonic.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:vonic] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "vonic" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~vonic_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~vonic_orbit.config new file mode 100644 index 0000000..c64ec30 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~vonic_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:vonic_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "vonic_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~vulcan.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~vulcan.config new file mode 100644 index 0000000..3ea8378 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~vulcan.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:vulcan] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "vulcan" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~vulcan_orbit.config b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~vulcan_orbit.config new file mode 100644 index 0000000..b59c0c9 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/journeymap/server/6.0/journeymap.server.planetsplus~vulcan_orbit.config @@ -0,0 +1,36 @@ +// JourneyMap server configuration file. Modify at your own risk! +// To restore the default settings, simply delete this file before starting Minecraft server +// For more information, go to: http://journeymap.info/JourneyMapServer +// +// Dimension ResourceKey[minecraft:dimension / planetsplus:vulcan_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim +{ + "enabled": "true", + "dimension": { + "f_135776_": { + "f_135804_": "minecraft", + "f_135805_": "dimension" + }, + "f_135777_": { + "f_135804_": "planetsplus", + "f_135805_": "vulcan_orbit" + } + }, + "minimapEnabled": "true", + "hideCoordinates": "false", + "globalWaypointsOnly": "false", + "teleportEnabled": "false", + "crossDimTeleport": "true", + "surfaceRenderRange": "0", + "caveRenderRange": "0", + "surfaceMapping": "ALL", + "topoMapping": "ALL", + "biomeMapping": "ALL", + "caveMapping": "Disabled", + "radarEnabled": "Disabled", + "playerRadarEnabled": "false", + "playerRadarNamesEnabled": "true", + "villagerRadarEnabled": "false", + "animalRadarEnabled": "false", + "mobRadarEnabled": "false", + "configVersion": "6.0.0" +} \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/ops.json b/instances/forge-1.20.1-survival/runtime/data/ops.json new file mode 100644 index 0000000..71ea9c9 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/ops.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/data/run.bat b/instances/forge-1.20.1-survival/runtime/data/run.bat new file mode 100644 index 0000000..59fd217 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/run.bat @@ -0,0 +1,7 @@ +@echo off +REM Forge requires a configured set of both JVM and program arguments. +REM Add custom JVM arguments to the user_jvm_args.txt +REM Add custom program arguments {such as nogui} to this file in the next line before the %* or +REM pass them to this script directly +java @user_jvm_args.txt @libraries/net/minecraftforge/forge/1.20.1-47.4.10/win_args.txt %* +pause diff --git a/instances/forge-1.20.1-survival/runtime/data/run.sh b/instances/forge-1.20.1-survival/runtime/data/run.sh new file mode 100755 index 0000000..82efb1e --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/run.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env sh +# Forge requires a configured set of both JVM and program arguments. +# Add custom JVM arguments to the user_jvm_args.txt +# Add custom program arguments {such as nogui} to this file in the next line before the "$@" or +# pass them to this script directly +java @user_jvm_args.txt @libraries/net/minecraftforge/forge/1.20.1-47.4.10/unix_args.txt "$@" diff --git a/instances/forge-1.20.1-survival/runtime/data/server.properties b/instances/forge-1.20.1-survival/runtime/data/server.properties new file mode 100644 index 0000000..ccdfa99 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/server.properties @@ -0,0 +1,58 @@ +#Minecraft server properties +#Mon Aug 10 17:08:14 UTC 2026 +allow-flight=false +allow-nether=true +broadcast-console-to-ops=true +broadcast-rcon-to-ops=true +difficulty=hard +enable-command-block=false +enable-jmx-monitoring=false +enable-query=false +enable-rcon=true +enable-status=true +enforce-secure-profile=true +enforce-whitelist=false +entity-broadcast-range-percentage=100 +force-gamemode=false +function-permission-level=2 +gamemode=survival +generate-structures=true +generator-settings={} +hardcore=false +hide-online-players=false +initial-disabled-packs= +initial-enabled-packs=vanilla +level-name=world +level-seed= +level-type=minecraft\:normal +max-chained-neighbor-updates=1000000 +max-players=15 +max-tick-time=60000 +max-world-size=29999984 +motd=MC SotoHome\! +network-compression-threshold=256 +online-mode=false +op-permission-level=4 +player-idle-timeout=0 +prevent-proxy-connections=false +pvp=true +query.port=25565 +rate-limit=0 +rcon.password=e3f7fc549fa0e74d29de77bc +rcon.port=25575 +require-resource-pack=false +resource-pack= +resource-pack-prompt= +resource-pack-sha1= +server-ip= +server-port=25565 +simulation-distance=6 +spawn-animals=true +spawn-monsters=true +spawn-npcs=true +spawn-protection=16 +sync-chunk-writes=false +text-filtering-config= +use-native-transport=true +view-distance=8 +white-list=false diff --git a/instances/forge-1.20.1-survival/runtime/data/user_jvm_args.txt b/instances/forge-1.20.1-survival/runtime/data/user_jvm_args.txt new file mode 100644 index 0000000..bd61ecd --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/user_jvm_args.txt @@ -0,0 +1 @@ +-Xmx12G -Xms12G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=8M -XX:G1ReservePercent=15 -XX:InitiatingHeapOccupancyPercent=45 -XX:G1MixedGCCountTarget=4 -XX:G1HeapWastePercent=5 -XX:G1NewSizePercent=30 -XX:G1MaxNewSizePercent=40 -XX:SurvivorRatio=8 -XX:MaxTenuringThreshold=1 -XX:+DisableExplicitGC -XX:+AlwaysPreTouch diff --git a/instances/forge-1.20.1-survival/runtime/data/whitelist.json b/instances/forge-1.20.1-survival/runtime/data/whitelist.json new file mode 100644 index 0000000..71ea9c9 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/data/whitelist.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/instances/forge-1.20.1-survival/runtime/docker-compose.yml b/instances/forge-1.20.1-survival/runtime/docker-compose.yml new file mode 100644 index 0000000..f7935b6 --- /dev/null +++ b/instances/forge-1.20.1-survival/runtime/docker-compose.yml @@ -0,0 +1,44 @@ +services: + mc: + image: itzg/minecraft-server:java17 + container_name: mc_forge_server + restart: unless-stopped + ports: + - "25565:25565" + - "24454:24454/udp" + environment: + EULA: "TRUE" + TYPE: "FORGE" + VERSION: "1.20.1" + MEMORY: "12G" + + # Server Properties Mapping + VIEW_DISTANCE: "8" + SIMULATION_DISTANCE: "6" + NETWORK_COMPRESSION_THRESHOLD: "256" + MAX_TICK_TIME: "60000" + SYNC_CHUNK_WRITES: "FALSE" + ENABLE_STATUS: "TRUE" + MOTD: "MC SotoHome!" + MAX_PLAYERS: "15" + DIFFICULTY: "hard" + ONLINE_MODE: "FALSE" + + # JVM Garbage Collection & ARM64 Optimization Flags + JVM_OPTS: >- + -XX:+UnlockExperimentalVMOptions + -XX:+UseG1GC + -XX:MaxGCPauseMillis=50 + -XX:G1HeapRegionSize=8M + -XX:G1ReservePercent=15 + -XX:InitiatingHeapOccupancyPercent=45 + -XX:G1MixedGCCountTarget=4 + -XX:G1HeapWastePercent=5 + -XX:G1NewSizePercent=30 + -XX:G1MaxNewSizePercent=40 + -XX:SurvivorRatio=8 + -XX:MaxTenuringThreshold=1 + -XX:+DisableExplicitGC + -XX:+AlwaysPreTouch + volumes: + - ./data:/data