mirror of
https://github.com/BX-Team/DivineMC.git
synced 2025-12-19 14:59:25 +00:00
409 lines
21 KiB
Diff
409 lines
21 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: NONPLAYT <76615486+NONPLAYT@users.noreply.github.com>
|
|
Date: Mon, 27 Mar 2023 13:16:41 +0300
|
|
Subject: [PATCH] Optimize default values for configs
|
|
|
|
|
|
diff --git a/src/main/java/io/papermc/paper/configuration/GlobalConfiguration.java b/src/main/java/io/papermc/paper/configuration/GlobalConfiguration.java
|
|
index 2874bc3001c4e7d9191e47ba512c5a68369c21f1..d02d22b09430b93349d48bcb50d456d23f9b49c7 100644
|
|
--- a/src/main/java/io/papermc/paper/configuration/GlobalConfiguration.java
|
|
+++ b/src/main/java/io/papermc/paper/configuration/GlobalConfiguration.java
|
|
@@ -96,9 +96,11 @@ public class GlobalConfiguration extends ConfigurationPart {
|
|
|
|
@Deprecated(forRemoval = true)
|
|
public class Timings extends ConfigurationPart {
|
|
- public boolean enabled = true;
|
|
- public boolean verbose = true;
|
|
- public String url = "https://timings.aikar.co/";
|
|
+ // DivineMC start - optimize default values for configs - disable default metrics
|
|
+ public boolean enabled = false;
|
|
+ public boolean verbose = false;
|
|
+ public String url = "https://timin.gs/";
|
|
+ // DivineMC end
|
|
public boolean serverNamePrivacy = false;
|
|
public List<String> hiddenConfigEntries = List.of(
|
|
"database",
|
|
@@ -328,9 +330,9 @@ public class GlobalConfiguration extends ConfigurationPart {
|
|
public boolean fixEntityPositionDesync = true;
|
|
public boolean loadPermissionsYmlBeforePlugins = true;
|
|
@Constraints.Min(4)
|
|
- public int regionFileCacheSize = 256;
|
|
+ public int regionFileCacheSize = 512; // DivineMC - optimize default values for configs
|
|
@Comment("See https://luckformula.emc.gs")
|
|
- public boolean useAlternativeLuckFormula = false;
|
|
+ public boolean useAlternativeLuckFormula = true; // DivineMC - optimize default values for configs
|
|
public boolean useDimensionTypeForCustomSpawners = false;
|
|
public boolean strictAdvancementDimensionCheck = false;
|
|
public IntOr.Default compressionLevel = IntOr.Default.USE_DEFAULT;
|
|
diff --git a/src/main/java/io/papermc/paper/configuration/WorldConfiguration.java b/src/main/java/io/papermc/paper/configuration/WorldConfiguration.java
|
|
index efc91ff91827872c62b8bd060282549ccdcf67dd..2b3075505f09c15cee350b7a7f5e7571600a930a 100644
|
|
--- a/src/main/java/io/papermc/paper/configuration/WorldConfiguration.java
|
|
+++ b/src/main/java/io/papermc/paper/configuration/WorldConfiguration.java
|
|
@@ -150,9 +150,9 @@ public class WorldConfiguration extends ConfigurationPart {
|
|
|
|
public ArmorStands armorStands;
|
|
|
|
- public class ArmorStands extends ConfigurationPart {
|
|
- public boolean doCollisionEntityLookups = true;
|
|
- public boolean tick = true;
|
|
+ public class ArmorStands extends ConfigurationPart { // DivineMC - optimize default values for configs
|
|
+ public boolean doCollisionEntityLookups = false;
|
|
+ public boolean tick = false;
|
|
}
|
|
|
|
public Markers markers;
|
|
@@ -252,8 +252,8 @@ public class WorldConfiguration extends ConfigurationPart {
|
|
public Behavior behavior;
|
|
|
|
public class Behavior extends ConfigurationPart {
|
|
- public boolean disableChestCatDetection = false;
|
|
- public boolean spawnerNerfedMobsShouldJump = false;
|
|
+ public boolean disableChestCatDetection = true; // DivineMC - optimize default values for configs
|
|
+ public boolean spawnerNerfedMobsShouldJump = true; // DivineMC - optimize default values for configs
|
|
public int experienceMergeMaxValue = -1;
|
|
public boolean shouldRemoveDragon = false;
|
|
public boolean zombiesTargetTurtleEggs = true;
|
|
@@ -277,7 +277,7 @@ public class WorldConfiguration extends ConfigurationPart {
|
|
public int playerInsomniaStartTicks = 72000;
|
|
public int phantomsSpawnAttemptMinSeconds = 60;
|
|
public int phantomsSpawnAttemptMaxSeconds = 119;
|
|
- public boolean parrotsAreUnaffectedByPlayerMovement = false;
|
|
+ public boolean parrotsAreUnaffectedByPlayerMovement = true; // DivineMC - optimize default values for configs
|
|
@BelowZeroToEmpty
|
|
public DoubleOr.Default zombieVillagerInfectionChance = DoubleOr.Default.USE_DEFAULT;
|
|
public MobsCanAlwaysPickUpLoot mobsCanAlwaysPickUpLoot;
|
|
@@ -288,7 +288,7 @@ public class WorldConfiguration extends ConfigurationPart {
|
|
}
|
|
|
|
public boolean disablePlayerCrits = false;
|
|
- public boolean nerfPigmenFromNetherPortals = false;
|
|
+ public boolean nerfPigmenFromNetherPortals = true; // DivineMC - optimize default values for configs
|
|
public PillagerPatrols pillagerPatrols;
|
|
|
|
public class PillagerPatrols extends ConfigurationPart {
|
|
@@ -382,7 +382,7 @@ public class WorldConfiguration extends ConfigurationPart {
|
|
public class Environment extends ConfigurationPart {
|
|
public boolean disableThunder = false;
|
|
public boolean disableIceAndSnow = false;
|
|
- public boolean optimizeExplosions = false;
|
|
+ public boolean optimizeExplosions = true; // DivineMC - optimize default values for configs
|
|
public boolean disableExplosionKnockback = false;
|
|
public boolean generateFlatBedrock = false;
|
|
public FrostedIce frostedIce;
|
|
@@ -428,7 +428,7 @@ public class WorldConfiguration extends ConfigurationPart {
|
|
|
|
public class Maps extends ConfigurationPart {
|
|
public int itemFrameCursorLimit = 128;
|
|
- public int itemFrameCursorUpdateInterval = 10;
|
|
+ public int itemFrameCursorUpdateInterval = 20; // DivineMC - optimize default values for configs
|
|
}
|
|
|
|
public Fixes fixes;
|
|
@@ -454,7 +454,7 @@ public class WorldConfiguration extends ConfigurationPart {
|
|
public class Hopper extends ConfigurationPart {
|
|
public boolean cooldownWhenFull = true;
|
|
public boolean disableMoveEvent = false;
|
|
- public boolean ignoreOccludingBlocks = false;
|
|
+ public boolean ignoreOccludingBlocks = true; // DivineMC - optimize default values for configs
|
|
}
|
|
|
|
public Collisions collisions;
|
|
@@ -462,9 +462,9 @@ public class WorldConfiguration extends ConfigurationPart {
|
|
public class Collisions extends ConfigurationPart {
|
|
public boolean onlyPlayersCollide = false;
|
|
public boolean allowVehicleCollisions = true;
|
|
- public boolean fixClimbingBypassingCrammingRule = false;
|
|
+ public boolean fixClimbingBypassingCrammingRule = true; // DivineMC - optimize default values for configs
|
|
@RequiresSpigotInitialization(MaxEntityCollisionsInitializer.class)
|
|
- public int maxEntityCollisions = 8;
|
|
+ public int maxEntityCollisions = 2; // DivineMC - optimize default values for configs
|
|
public boolean allowPlayerCrammingDamage = false;
|
|
}
|
|
|
|
@@ -472,18 +472,31 @@ public class WorldConfiguration extends ConfigurationPart {
|
|
|
|
public class Chunks extends ConfigurationPart {
|
|
public AutosavePeriod autoSaveInterval = AutosavePeriod.def();
|
|
- public int maxAutoSaveChunksPerTick = 24;
|
|
+ public int maxAutoSaveChunksPerTick = 12;
|
|
public int fixedChunkInhabitedTime = -1;
|
|
- public boolean preventMovingIntoUnloadedChunks = false;
|
|
- public Duration delayChunkUnloadsBy = Duration.of("10s");
|
|
+ public boolean preventMovingIntoUnloadedChunks = true; // DivineMC - optimize default values for configs
|
|
+ public Duration delayChunkUnloadsBy = Duration.of("5s"); // DivineMC - optimize default values for configs
|
|
public Reference2IntMap<EntityType<?>> entityPerChunkSaveLimit = Util.make(new Reference2IntOpenHashMap<>(BuiltInRegistries.ENTITY_TYPE.size()), map -> {
|
|
- map.defaultReturnValue(-1);
|
|
- map.put(EntityType.EXPERIENCE_ORB, -1);
|
|
- map.put(EntityType.SNOWBALL, -1);
|
|
- map.put(EntityType.ENDER_PEARL, -1);
|
|
- map.put(EntityType.ARROW, -1);
|
|
- map.put(EntityType.FIREBALL, -1);
|
|
- map.put(EntityType.SMALL_FIREBALL, -1);
|
|
+ // DivineMC start - optimize default values for configs
|
|
+ map.put(EntityType.EXPERIENCE_ORB, 16);
|
|
+ map.put(EntityType.SNOWBALL, 8);
|
|
+ map.put(EntityType.ENDER_PEARL, 8);
|
|
+ map.put(EntityType.ARROW, 16);
|
|
+ map.put(EntityType.FIREBALL, 8);
|
|
+ map.put(EntityType.SMALL_FIREBALL, 8);
|
|
+ map.put(EntityType.DRAGON_FIREBALL, 3);
|
|
+ map.put(EntityType.EGG, 8);
|
|
+ map.put(EntityType.EYE_OF_ENDER, 8);
|
|
+ map.put(EntityType.FIREWORK_ROCKET, 8);
|
|
+ map.put(EntityType.POTION, 8);
|
|
+ map.put(EntityType.LLAMA_SPIT, 3);
|
|
+ map.put(EntityType.SHULKER_BULLET, 8);
|
|
+ map.put(EntityType.SPECTRAL_ARROW, 16);
|
|
+ map.put(EntityType.EXPERIENCE_BOTTLE, 3);
|
|
+ map.put(EntityType.TRIDENT, 16);
|
|
+ map.put(EntityType.WITHER_SKULL, 4);
|
|
+ map.put(EntityType.AREA_EFFECT_CLOUD, 8);
|
|
+ // DivineMC end
|
|
});
|
|
public boolean flushRegionsOnSave = false;
|
|
}
|
|
@@ -498,13 +511,15 @@ public class WorldConfiguration extends ConfigurationPart {
|
|
public TickRates tickRates;
|
|
|
|
public class TickRates extends ConfigurationPart {
|
|
- public int grassSpread = 1;
|
|
- public int containerUpdate = 1;
|
|
- public int mobSpawner = 1;
|
|
+ // DivineMC start - optimize default values for configs
|
|
+ public int grassSpread = 4;
|
|
+ public int containerUpdate = 3;
|
|
+ public int mobSpawner = 2;
|
|
public int wetFarmland = 1;
|
|
public int dryFarmland = 1;
|
|
- public Table<EntityType<?>, String, Integer> sensor = Util.make(HashBasedTable.create(), table -> table.put(EntityType.VILLAGER, "secondarypoisensor", 40));
|
|
- public Table<EntityType<?>, String, Integer> behavior = Util.make(HashBasedTable.create(), table -> table.put(EntityType.VILLAGER, "validatenearbypoi", -1));
|
|
+ public Table<EntityType<?>, String, Integer> sensor = Util.make(HashBasedTable.create(), table -> table.put(EntityType.VILLAGER, "secondarypoisensor", 80));
|
|
+ public Table<EntityType<?>, String, Integer> behavior = Util.make(HashBasedTable.create(), table -> table.put(EntityType.VILLAGER, "validatenearbypoi", 60));
|
|
+ // DivineMC end
|
|
}
|
|
|
|
@Setting(FeatureSeedsGeneration.FEATURE_SEEDS_KEY)
|
|
@@ -513,7 +528,7 @@ public class WorldConfiguration extends ConfigurationPart {
|
|
public class FeatureSeeds extends ConfigurationPart {
|
|
@SuppressWarnings("unused") // Is used in FeatureSeedsGeneration
|
|
@Setting(FeatureSeedsGeneration.GENERATE_KEY)
|
|
- public boolean generateRandomSeedsForAll = false;
|
|
+ public boolean generateRandomSeedsForAll = true; // DivineMC - optimize default values for configs
|
|
@Setting(FeatureSeedsGeneration.FEATURES_KEY)
|
|
public Reference2LongMap<Holder<ConfiguredFeature<?, ?>>> features = new Reference2LongOpenHashMap<>();
|
|
|
|
@@ -534,9 +549,9 @@ public class WorldConfiguration extends ConfigurationPart {
|
|
|
|
public class Misc extends ConfigurationPart {
|
|
public int lightQueueSize = 20;
|
|
- public boolean updatePathfindingOnBlockUpdate = true;
|
|
+ public boolean updatePathfindingOnBlockUpdate = false; // DivineMC - optimize default values for configs
|
|
public boolean showSignClickCommandFailureMsgsToPlayer = false;
|
|
- public RedstoneImplementation redstoneImplementation = RedstoneImplementation.VANILLA;
|
|
+ public RedstoneImplementation redstoneImplementation = RedstoneImplementation.ALTERNATE_CURRENT; // DivineMC - optimize default values for configs
|
|
public boolean disableEndCredits = false;
|
|
public float maxLeashDistance = 10f;
|
|
public boolean disableSprintInterruptionOnAttack = false;
|
|
diff --git a/src/main/java/org/purpurmc/purpur/PurpurConfig.java b/src/main/java/org/purpurmc/purpur/PurpurConfig.java
|
|
index bcdd2bc6ffc91349ac75833bd3928e8ca7de7a0f..a5dec9d6858fc19d6877a8ae93e51dcbccabd635 100644
|
|
--- a/src/main/java/org/purpurmc/purpur/PurpurConfig.java
|
|
+++ b/src/main/java/org/purpurmc/purpur/PurpurConfig.java
|
|
@@ -241,7 +241,7 @@ public class PurpurConfig {
|
|
laggingThreshold = getDouble("settings.lagging-threshold", laggingThreshold);
|
|
}
|
|
|
|
- public static boolean useAlternateKeepAlive = false;
|
|
+ public static boolean useAlternateKeepAlive = true;
|
|
private static void useAlternateKeepAlive() {
|
|
useAlternateKeepAlive = getBoolean("settings.use-alternate-keepalive", useAlternateKeepAlive);
|
|
}
|
|
diff --git a/src/main/java/org/spigotmc/SpigotConfig.java b/src/main/java/org/spigotmc/SpigotConfig.java
|
|
index 6c2a3813e7d63d57f07a8fa2edbb9d231221d818..44ef1545f8e5a2d0785c139da48d7086922cf308 100644
|
|
--- a/src/main/java/org/spigotmc/SpigotConfig.java
|
|
+++ b/src/main/java/org/spigotmc/SpigotConfig.java
|
|
@@ -335,7 +335,7 @@ public class SpigotConfig
|
|
public static boolean saveUserCacheOnStopOnly;
|
|
private static void saveUserCacheOnStopOnly()
|
|
{
|
|
- SpigotConfig.saveUserCacheOnStopOnly = SpigotConfig.getBoolean( "settings.save-user-cache-on-stop-only", false );
|
|
+ SpigotConfig.saveUserCacheOnStopOnly = SpigotConfig.getBoolean( "settings.save-user-cache-on-stop-only", true ); // DivineMC - optimize default values for configs
|
|
}
|
|
|
|
public static double movedWronglyThreshold;
|
|
@@ -396,8 +396,10 @@ public class SpigotConfig
|
|
public static boolean logVillagerDeaths;
|
|
public static boolean logNamedDeaths;
|
|
private static void logDeaths() {
|
|
- SpigotConfig.logVillagerDeaths = SpigotConfig.getBoolean("settings.log-villager-deaths", true);
|
|
- SpigotConfig.logNamedDeaths = SpigotConfig.getBoolean("settings.log-named-deaths", true);
|
|
+ // DivineMC start - optimize default values for configs
|
|
+ SpigotConfig.logVillagerDeaths = SpigotConfig.getBoolean("settings.log-villager-deaths", false);
|
|
+ SpigotConfig.logNamedDeaths = SpigotConfig.getBoolean("settings.log-named-deaths", false);
|
|
+ // DivineMC end
|
|
}
|
|
|
|
public static boolean disablePlayerDataSaving;
|
|
diff --git a/src/main/java/org/spigotmc/SpigotWorldConfig.java b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
index 1cf6d4f854d89c515e48e1fb365eb95ff9340765..f9ba24d32f4170c641e420991e6c358f6bd91be2 100644
|
|
--- a/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
+++ b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
@@ -150,14 +150,14 @@ public class SpigotWorldConfig
|
|
public double itemMerge;
|
|
private void itemMerge()
|
|
{
|
|
- this.itemMerge = this.getDouble("merge-radius.item", 2.5 );
|
|
+ this.itemMerge = this.getDouble("merge-radius.item", 3.5 ); // DivineMC - optimize default values for configs
|
|
this.log( "Item Merge Radius: " + this.itemMerge );
|
|
}
|
|
|
|
public double expMerge;
|
|
private void expMerge()
|
|
{
|
|
- this.expMerge = this.getDouble("merge-radius.exp", 3.0 );
|
|
+ this.expMerge = this.getDouble("merge-radius.exp", 4.0 ); // DivineMC - optimize default values for configs
|
|
this.log( "Experience Merge Radius: " + this.expMerge );
|
|
}
|
|
|
|
@@ -196,7 +196,7 @@ public class SpigotWorldConfig
|
|
public byte mobSpawnRange;
|
|
private void mobSpawnRange()
|
|
{
|
|
- this.mobSpawnRange = (byte) getInt( "mob-spawn-range", 8 ); // Paper - Vanilla
|
|
+ this.mobSpawnRange = (byte) getInt( "mob-spawn-range", 2 ); // Paper - Vanilla // DivineMC - optimize default values for configs
|
|
this.log( "Mob Spawn Range: " + this.mobSpawnRange );
|
|
}
|
|
|
|
@@ -207,14 +207,14 @@ public class SpigotWorldConfig
|
|
this.log( "Item Despawn Rate: " + this.itemDespawnRate );
|
|
}
|
|
|
|
- public int animalActivationRange = 32;
|
|
- public int monsterActivationRange = 32;
|
|
+ public int animalActivationRange = 16; // DivineMC - optimize default values for configs
|
|
+ public int monsterActivationRange = 24; // DivineMC - optimize default values for configs
|
|
public int raiderActivationRange = 48;
|
|
- public int miscActivationRange = 16;
|
|
+ public int miscActivationRange = 8; // DivineMC - optimize default values for configs
|
|
// Paper start
|
|
public int flyingMonsterActivationRange = 32;
|
|
- public int waterActivationRange = 16;
|
|
- public int villagerActivationRange = 32;
|
|
+ public int waterActivationRange = 8; // DivineMC - optimize default values for configs
|
|
+ public int villagerActivationRange = 16; // DivineMC - optimize default values for configs
|
|
public int wakeUpInactiveAnimals = 4;
|
|
public int wakeUpInactiveAnimalsEvery = 60*20;
|
|
public int wakeUpInactiveAnimalsFor = 5*20;
|
|
@@ -231,7 +231,7 @@ public class SpigotWorldConfig
|
|
public int villagersWorkImmunityFor = 20;
|
|
public boolean villagersActiveForPanic = true;
|
|
// Paper end
|
|
- public boolean tickInactiveVillagers = true;
|
|
+ public boolean tickInactiveVillagers = false; // DivineMC - optimize default values for configs
|
|
public boolean ignoreSpectatorActivation = false;
|
|
private void activationRange()
|
|
{
|
|
@@ -299,7 +299,7 @@ public class SpigotWorldConfig
|
|
{
|
|
this.set( "ticks-per.hopper-check", 1 );
|
|
}
|
|
- this.hopperCheck = this.getInt( "ticks-per.hopper-check", 1 );
|
|
+ this.hopperCheck = this.getInt( "ticks-per.hopper-check", 8 ); // DivineMC - optimize default values for configs
|
|
this.hopperAmount = this.getInt( "hopper-amount", 1 );
|
|
this.hopperCanLoadChunks = this.getBoolean( "hopper-can-load-chunks", false );
|
|
this.log( "Hopper Transfer: " + this.hopperTransfer + " Hopper Check: " + this.hopperCheck + " Hopper Amount: " + this.hopperAmount + " Hopper Can Load Chunks: " + this.hopperCanLoadChunks );
|
|
@@ -309,7 +309,7 @@ public class SpigotWorldConfig
|
|
public int tridentDespawnRate;
|
|
private void arrowDespawnRate()
|
|
{
|
|
- this.arrowDespawnRate = this.getInt( "arrow-despawn-rate", 1200 );
|
|
+ this.arrowDespawnRate = this.getInt( "arrow-despawn-rate", 300 ); // DivineMC - optimize default values for configs
|
|
this.tridentDespawnRate = this.getInt( "trident-despawn-rate", this.arrowDespawnRate );
|
|
this.log( "Arrow Despawn Rate: " + this.arrowDespawnRate + " Trident Respawn Rate:" + this.tridentDespawnRate );
|
|
}
|
|
@@ -324,14 +324,14 @@ public class SpigotWorldConfig
|
|
public boolean nerfSpawnerMobs;
|
|
private void nerfSpawnerMobs()
|
|
{
|
|
- this.nerfSpawnerMobs = this.getBoolean( "nerf-spawner-mobs", false );
|
|
+ this.nerfSpawnerMobs = this.getBoolean( "nerf-spawner-mobs", true ); // DivineMC - optimize default values for configs
|
|
this.log( "Nerfing mobs spawned from spawners: " + this.nerfSpawnerMobs );
|
|
}
|
|
|
|
public boolean enableZombiePigmenPortalSpawns;
|
|
private void enableZombiePigmenPortalSpawns()
|
|
{
|
|
- this.enableZombiePigmenPortalSpawns = this.getBoolean( "enable-zombie-pigmen-portal-spawns", true );
|
|
+ this.enableZombiePigmenPortalSpawns = this.getBoolean( "enable-zombie-pigmen-portal-spawns", false ); // DivineMC - optimize default values for configs
|
|
this.log( "Allow Zombie Pigmen to spawn from portal blocks: " + this.enableZombiePigmenPortalSpawns );
|
|
}
|
|
|
|
@@ -449,7 +449,7 @@ public class SpigotWorldConfig
|
|
public int hangingTickFrequency;
|
|
private void hangingTickFrequency()
|
|
{
|
|
- this.hangingTickFrequency = this.getInt( "hanging-tick-frequency", 100 );
|
|
+ this.hangingTickFrequency = this.getInt( "hanging-tick-frequency", 200 ); // DivineMC - optimize default values for configs
|
|
}
|
|
|
|
public int tileMaxTickTime;
|
|
diff --git a/src/main/resources/configurations/bukkit.yml b/src/main/resources/configurations/bukkit.yml
|
|
index eef7c125b2689f29cae5464659eacdf33f5695b2..8dbcf5f20dd99dba5d21ec6cd293a7534652c328 100644
|
|
--- a/src/main/resources/configurations/bukkit.yml
|
|
+++ b/src/main/resources/configurations/bukkit.yml
|
|
@@ -18,28 +18,28 @@ settings:
|
|
update-folder: update
|
|
plugin-profiling: false
|
|
connection-throttle: 4000
|
|
- query-plugins: true
|
|
+ query-plugins: false
|
|
deprecated-verbose: default
|
|
shutdown-message: Server closed
|
|
minimum-api: none
|
|
use-map-color-cache: true
|
|
spawn-limits:
|
|
- monsters: 70
|
|
- animals: 10
|
|
- water-animals: 5
|
|
- water-ambient: 20
|
|
- water-underground-creature: 5
|
|
- axolotls: 5
|
|
- ambient: 15
|
|
+ monsters: 20
|
|
+ animals: 5
|
|
+ water-animals: 2
|
|
+ water-ambient: 2
|
|
+ water-underground-creature: 3
|
|
+ axolotls: 3
|
|
+ ambient: 1
|
|
chunk-gc:
|
|
- period-in-ticks: 600
|
|
+ period-in-ticks: 400
|
|
ticks-per:
|
|
animal-spawns: 400
|
|
- monster-spawns: 1
|
|
- water-spawns: 1
|
|
- water-ambient-spawns: 1
|
|
- water-underground-creature-spawns: 1
|
|
- axolotl-spawns: 1
|
|
- ambient-spawns: 1
|
|
+ monster-spawns: 10
|
|
+ water-spawns: 400
|
|
+ water-ambient-spawns: 400
|
|
+ water-underground-creature-spawns: 400
|
|
+ axolotl-spawns: 400
|
|
+ ambient-spawns: 400
|
|
autosave: 6000
|
|
-aliases: now-in-commands.yml
|
|
+aliases: now-in-commands.yml
|
|
\ No newline at end of file
|
|
diff --git a/src/main/resources/configurations/commands.yml b/src/main/resources/configurations/commands.yml
|
|
index 18f54571200e2eca09a39b88f170fe7b99d8618f..1b57d51d92c5c69286800d10baeaa936fa208cae 100644
|
|
--- a/src/main/resources/configurations/commands.yml
|
|
+++ b/src/main/resources/configurations/commands.yml
|
|
@@ -12,5 +12,3 @@
|
|
command-block-overrides: []
|
|
ignore-vanilla-permissions: false
|
|
aliases:
|
|
- icanhasbukkit:
|
|
- - "version $1-"
|