docs: restructure operations manual, update README/mod-configs for DH pregen, and overhaul .gitignore
This commit is contained in:
parent
8e9bd962b3
commit
18b930f5cc
82 changed files with 142 additions and 2667 deletions
98
.gitignore
vendored
98
.gitignore
vendored
|
|
@ -1,19 +1,81 @@
|
|||
# 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
|
||||
# =====================================================================
|
||||
# MINECRAFT DOCKER & RUNTIME DATA (Volatile Server Artifacts)
|
||||
# =====================================================================
|
||||
# World Data, Dimensions & Regional Files
|
||||
**/data/world/
|
||||
**/data/world_backup_*
|
||||
|
||||
# Logs & Crash Stack Traces
|
||||
**/data/logs/
|
||||
**/data/crash-reports/
|
||||
*.log
|
||||
*.log.gz
|
||||
|
||||
# Runtime Caches, Libraries & Temporary Files
|
||||
**/data/.cache/
|
||||
**/data/.local/
|
||||
**/data/libraries/
|
||||
**/data/modernfix/
|
||||
**/data/patchouli_books/
|
||||
**/data/tmp_lts_build/
|
||||
**/data/.forge-manifest.json
|
||||
|
||||
# Docker & Wrapper Environment Runtime Files
|
||||
**/data/.rcon-cli.env
|
||||
**/data/.rcon-cli.yaml
|
||||
**/data/.run-forge.env
|
||||
**/data/user_jvm_args.txt
|
||||
|
||||
# Dynamic User & State Tracking Files
|
||||
**/data/usercache.json
|
||||
**/data/usernamecache.json
|
||||
**/data/banned-ips.json
|
||||
**/data/banned-players.json
|
||||
**/data/ops.json
|
||||
**/data/whitelist.json
|
||||
|
||||
# Backups & Archives
|
||||
**/data/simplebackups/
|
||||
*.zip
|
||||
*.tar.gz
|
||||
*.bak
|
||||
|
||||
# =====================================================================
|
||||
# MOD RUNTIME DATABASES, TEMP FILES & MAP CONFIGS
|
||||
# =====================================================================
|
||||
# LuckPerms H2 / SQLite Database Files
|
||||
*.mv.db
|
||||
*.db
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
|
||||
# Spark Profiler Temporary Output
|
||||
**/data/config/spark/tmp/
|
||||
*.tmp
|
||||
*.jfr
|
||||
|
||||
# JourneyMap Auto-Generated Server Dimension Configs
|
||||
**/data/journeymap/
|
||||
|
||||
# =====================================================================
|
||||
# BINARY MOD FILES
|
||||
# =====================================================================
|
||||
# Mod JAR files (managed via download_mods.py)
|
||||
**/data/mods/*.jar
|
||||
|
||||
# =====================================================================
|
||||
# PYTHON & SYSTEM TEMPORARY ARTIFACTS
|
||||
# =====================================================================
|
||||
# Python bytecode & virtual environments
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
.venv/
|
||||
env/
|
||||
|
||||
# OS & Editor Files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
|
|
|||
|
|
@ -73,16 +73,9 @@ docker ps -f "name=$INSTANCE_NAME" --format "table {{.Names}}\t{{.Status}}\t{{.P
|
|||
|
||||
---
|
||||
|
||||
## 5. RCON Command Reference
|
||||
## 5. Universal 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"
|
||||
```
|
||||
> **Note**: For instance-specific mod commands (e.g., Distant Horizons pre-generation or FLAN claim reloads), refer to the specific instance's `README.md`.
|
||||
|
||||
### Performance Profiling (spark)
|
||||
```bash
|
||||
|
|
@ -90,14 +83,12 @@ 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 <player>"
|
||||
docker exec -i $INSTANCE_NAME rcon-cli "whitelist remove <player>"
|
||||
docker exec -i $INSTANCE_NAME rcon-cli "tp <player1> <player2>"
|
||||
docker exec -i $INSTANCE_NAME rcon-cli "gamerule keepInventory true"
|
||||
docker exec -i $INSTANCE_NAME rcon-cli "op <player>"
|
||||
docker exec -i $INSTANCE_NAME rcon-cli "deop <player>"
|
||||
```
|
||||
|
|
|
|||
|
|
@ -26,10 +26,13 @@ services:
|
|||
VERSION: "1.20.1"
|
||||
MEMORY: "12G"
|
||||
|
||||
# Server Properties Mapping
|
||||
VIEW_DISTANCE: "8"
|
||||
SIMULATION_DISTANCE: "6"
|
||||
NETWORK_COMPRESSION_THRESHOLD: "256"
|
||||
MAX_TICK_TIME: "60000"
|
||||
MAX_TICK_TIME: "120000" # Prevents watchdog crashes during heavy worldgen
|
||||
PLAYER_IDLE_TIMEOUT: "0" # Prevents auto-kicking AFK players
|
||||
ALLOW_FLIGHT: "TRUE" # Prevents kicks when using Ad Astra rockets/ships
|
||||
SYNC_CHUNK_WRITES: "FALSE"
|
||||
ENABLE_STATUS: "TRUE"
|
||||
MOTD: "MC SotoHome!"
|
||||
|
|
@ -37,7 +40,10 @@ services:
|
|||
DIFFICULTY: "hard"
|
||||
ONLINE_MODE: "FALSE"
|
||||
|
||||
# JVM Garbage Collection & Network Flags
|
||||
JVM_OPTS: >-
|
||||
-Dfml.readTimeout=180
|
||||
-Dfml.loginTimeout=180
|
||||
-XX:+UnlockExperimentalVMOptions
|
||||
-XX:+UseG1GC
|
||||
-XX:MaxGCPauseMillis=50
|
||||
|
|
@ -58,7 +64,7 @@ services:
|
|||
|
||||
---
|
||||
|
||||
## 2. Server Mod Manifest (62 Mods)
|
||||
## 2. Server Mod Manifest (60 Mods)
|
||||
|
||||
```text
|
||||
[forge]ctov-3.4.14.jar
|
||||
|
|
@ -73,15 +79,13 @@ botarium-forge-1.20.1-2.3.4.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
|
||||
DistantHorizons-2.1.2-a-1.20.1.jar
|
||||
DistantHorizons-3.2.0-b-1.20.1-fabric-forge.jar
|
||||
FarmersDelight-1.20.1-1.3.2.jar
|
||||
ferritecore-6.0.1-forge.jar
|
||||
flan-1.20.1-1.11.16-forge.jar
|
||||
|
|
@ -93,7 +97,7 @@ 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
|
||||
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
|
||||
|
|
@ -125,7 +129,9 @@ YungsBetterMineshafts-1.20-Forge-4.0.4.jar
|
|||
YungsBetterStrongholds-1.20-Forge-4.0.3.jar
|
||||
```
|
||||
|
||||
## 3. Client Mod Manifest (51 Mods)
|
||||
---
|
||||
|
||||
## 3. Client Mod Manifest (49 Mods)
|
||||
|
||||
This list contains all client-side required mods, including client performance engines (`Embeddium`, `Oculus`, `Rubidium Extra`) and server expansion dependencies:
|
||||
|
||||
|
|
@ -142,15 +148,13 @@ botarium-forge-1.20.1-2.3.4.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
|
||||
DistantHorizons-2.1.2-a-1.20.1.jar
|
||||
DistantHorizons-3.2.0-b-1.20.1-fabric-forge.jar
|
||||
embeddium-0.3.31+mc1.20.1.jar
|
||||
FarmersDelight-1.20.1-1.3.2.jar
|
||||
ferritecore-6.0.1-forge.jar
|
||||
|
|
@ -161,7 +165,7 @@ 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
|
||||
Krypton_Reno-forge-1.20.1-26.1.1-1.20.1.jar
|
||||
locks_reforged-1.6.1.jar
|
||||
majrusz-library-forge-1.20.1-7.0.8.jar
|
||||
majruszs-difficulty-forge-1.20.1-1.9.10.jar
|
||||
|
|
@ -182,3 +186,32 @@ sophisticatedcore-1.20.1-1.3.75.2231.jar
|
|||
tenshilib-1.20.1-1.7.6-forge.jar
|
||||
voicechat-forge-1.20.1-2.6.22.jar
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 4. Instance Management & Mod RCON Commands
|
||||
|
||||
### Distant Horizons Chunk & LOD Pre-Generation
|
||||
With `distantGeneratorMode = "FULL"` enabled in `DistantHorizons.toml`, DH generates both standard terrain chunks and Level of Detail (LOD) visual data simultaneously:
|
||||
|
||||
```bash
|
||||
# Start pre-generation (250 chunks radius = 4,000 blocks around 0,0)
|
||||
docker exec -i mc_forge_server rcon-cli "dh pregen start overworld 0 0 250"
|
||||
|
||||
# Check status
|
||||
docker exec -i mc_forge_server rcon-cli "dh pregen status"
|
||||
|
||||
# Stop pre-generation
|
||||
docker exec -i mc_forge_server rcon-cli "dh pregen stop"
|
||||
```
|
||||
|
||||
### Claim Management (FLAN)
|
||||
```bash
|
||||
docker exec -i mc_forge_server rcon-cli "flan reload"
|
||||
```
|
||||
|
||||
### Performance Profiling (spark)
|
||||
```bash
|
||||
docker exec -i mc_forge_server rcon-cli "spark profiler --timeout 30"
|
||||
docker exec -i mc_forge_server rcon-cli "spark healthreport"
|
||||
```
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
| **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 |
|
||||
| **Distant Horizons** | `runtime/data/config/DistantHorizons.toml` | `distantGeneratorMode` | `"FULL"` | Pregenerate both vanilla chunks & LODs without Chunky |
|
||||
| **Distant Horizons** | `runtime/data/config/DistantHorizons.toml` | `distantGeneratorMode` | `"FULL"` | Pregenerate both vanilla chunks & LODs natively (`dh pregen start`) |
|
||||
|
||||
---
|
||||
|
||||
|
|
|
|||
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
|
|
@ -1,21 +0,0 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
|
|
@ -1,40 +0,0 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
// 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"
|
||||
}
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
#Minecraft server properties
|
||||
#Mon Aug 10 17:08:14 UTC 2026
|
||||
allow-flight=false
|
||||
#Tue Aug 11 14:49:07 UTC 2026
|
||||
allow-flight=true
|
||||
allow-nether=true
|
||||
broadcast-console-to-ops=true
|
||||
broadcast-rcon-to-ops=true
|
||||
|
|
@ -27,7 +27,7 @@ level-seed=
|
|||
level-type=minecraft\:normal
|
||||
max-chained-neighbor-updates=1000000
|
||||
max-players=15
|
||||
max-tick-time=60000
|
||||
max-tick-time=120000
|
||||
max-world-size=29999984
|
||||
motd=MC SotoHome\!
|
||||
network-compression-threshold=256
|
||||
|
|
@ -38,7 +38,7 @@ prevent-proxy-connections=false
|
|||
pvp=true
|
||||
query.port=25565
|
||||
rate-limit=0
|
||||
rcon.password=e3f7fc549fa0e74d29de77bc
|
||||
rcon.password=12eb66c41752972eb6ddfecd
|
||||
rcon.port=25575
|
||||
require-resource-pack=false
|
||||
resource-pack=
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
-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
|
||||
|
|
@ -16,7 +16,9 @@ services:
|
|||
VIEW_DISTANCE: "8"
|
||||
SIMULATION_DISTANCE: "6"
|
||||
NETWORK_COMPRESSION_THRESHOLD: "256"
|
||||
MAX_TICK_TIME: "60000"
|
||||
MAX_TICK_TIME: "120000" # Prevents watchdog crashes during heavy worldgen
|
||||
PLAYER_IDLE_TIMEOUT: "0" # Prevents auto-kicking AFK players
|
||||
ALLOW_FLIGHT: "TRUE" # Prevents kicks when using Ad Astra rockets/ships
|
||||
SYNC_CHUNK_WRITES: "FALSE"
|
||||
ENABLE_STATUS: "TRUE"
|
||||
MOTD: "MC SotoHome!"
|
||||
|
|
@ -24,8 +26,10 @@ services:
|
|||
DIFFICULTY: "hard"
|
||||
ONLINE_MODE: "FALSE"
|
||||
|
||||
# JVM Garbage Collection & ARM64 Optimization Flags
|
||||
# JVM Garbage Collection & Network Flags
|
||||
JVM_OPTS: >-
|
||||
-Dfml.readTimeout=180
|
||||
-Dfml.loginTimeout=180
|
||||
-XX:+UnlockExperimentalVMOptions
|
||||
-XX:+UseG1GC
|
||||
-XX:MaxGCPauseMillis=50
|
||||
|
|
|
|||
Loading…
Reference in a new issue