aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/world/anhgelus/molehunt/Molehunt.java6
-rw-r--r--src/main/java/world/anhgelus/molehunt/config/Config.java12
2 files changed, 9 insertions, 9 deletions
diff --git a/src/main/java/world/anhgelus/molehunt/Molehunt.java b/src/main/java/world/anhgelus/molehunt/Molehunt.java
index 86668e3..abce46b 100644
--- a/src/main/java/world/anhgelus/molehunt/Molehunt.java
+++ b/src/main/java/world/anhgelus/molehunt/Molehunt.java
@@ -83,17 +83,17 @@ public class Molehunt implements ModInitializer {
public static final GameRules.Key<GameRules.IntRule> INITIAL_WORLD_SIZE = GameRuleRegistry.register(
MOD_ID +":initialWorldSize",
GameRules.Category.MISC,
- GameRuleFactory.createIntRule(CONFIG_FILE.getOrDefault("initial_world_size", 200), 0)
+ GameRuleFactory.createIntRule(CONFIG_FILE.getOrDefault("initial_world_size", 600), 0)
);
public static final GameRules.Key<GameRules.IntRule> FINAL_WORLD_SIZE = GameRuleRegistry.register(
MOD_ID +":finalWorldSize",
GameRules.Category.MISC,
- GameRuleFactory.createIntRule(CONFIG_FILE.getOrDefault("final_world_size", 50), 0)
+ GameRuleFactory.createIntRule(CONFIG_FILE.getOrDefault("final_world_size", 100), 0)
);
public static final GameRules.Key<GameRules.IntRule> MOVING_STARTING_TIME_OFFSET = GameRuleRegistry.register(
MOD_ID +":borderMovingStartingTimeOffsetMinutes",
GameRules.Category.MISC,
- GameRuleFactory.createIntRule(CONFIG_FILE.getOrDefault("border_moving_starting_time_offset", 10), 0)
+ GameRuleFactory.createIntRule(CONFIG_FILE.getOrDefault("border_moving_starting_time_offset", 30), 0)
);
public static final GameRules.Key<GameRules.BooleanRule> ENABLE_PORTALS = GameRuleRegistry.register(
MOD_ID +":enablePortals",
diff --git a/src/main/java/world/anhgelus/molehunt/config/Config.java b/src/main/java/world/anhgelus/molehunt/config/Config.java
index 1f617e6..96f62d8 100644
--- a/src/main/java/world/anhgelus/molehunt/config/Config.java
+++ b/src/main/java/world/anhgelus/molehunt/config/Config.java
@@ -109,18 +109,18 @@ public class Config {
# World border settings
# Initial world size (in blocks).
- # Default: 200 blocks.
- initial_world_size = 200
+ # Default: 600 blocks.
+ initial_world_size = 600
# Final world size (in blocks).
- # Default: 50 blocks.
- final_world_size = 50
+ # Default: 100 blocks.
+ final_world_size = 100
# Moving starting time offset (in minutes)
# The time before starting to move the world borders.
# If this value is greater than the game duration, borders will never move.
- # Default: 10 minutes.
- border_moving_starting_time_offset = 10
+ # Default: 30 minutes.
+ border_moving_starting_time_offset = 30
# Other