Configuration Troubleshooting - MisterWonderful/DivineHordes GitHub Wiki

📋 Configuration Troubleshooting

🐛 Common Issues & Solutions

Problem: Events not starting

# Check these settings:
events:
  interval:
    min: 8          # Must be > 0
    max: 15         # Must be > min

Problem: No mobs spawning

# Verify mob configuration:
horde:
  spawning:
    base-mob-count: 20    # Must be > 0
    max-mob-count: 60     # Must be > base-mob-count
  mob-types:
    ZOMBIE: 25            # At least one mob type with weight > 0

Problem: Difficulty not scaling

# Ensure difficulty is enabled:
difficulty:
  enabled: true           # Must be true
  update-interval-seconds: 30  # Must be > 0

🔍 Debug Configuration

debug:
  enabled: true           # Enable debug logging
  log-level: "DEBUG"      # Detailed logging
  performance-metrics: true  # Log performance data
  gui-debug: true         # Debug GUI issues
  command-debug: true     # Debug command execution