Troubleshooting Guide

Comprehensive solutions for common LilChunks issues and problems.

Quick Diagnostics

Before diving into specific issues, run these quick diagnostic checks:

1

Check Plugin Status

Verify LilChunks is loaded and enabled:

/plugins
# Look for LilChunks in green
2

Test Basic Commands

Try basic functionality:

/lc help
/lc status
3

Check Permissions

Verify you have the required permissions:

/lp user <username> permission check lilchunks.use
/lp user <username> permission check lilchunks.admin
4

Review Server Logs

Check for error messages:

# Look for LilChunks-related errors
tail -f logs/latest.log | grep -i lilchunks

Common Issues

Installation and Loading Issues

Command and Permission Issues

Generation Issues

Performance Issues

Advanced Troubleshooting

Debug Mode

Enable debug mode for detailed troubleshooting:

1

Enable Debug

# Edit config.yml
debug: true
logging:
  detailed-logs: true
  progress-interval: 1
2

Reload Configuration

/lc reload
3

Reproduce Issue

# Try to reproduce the problem
/lc start 5
4

Analyze Logs

# Check detailed logs
tail -f logs/latest.log | grep -i lilchunks
5

Disable Debug

# Don't forget to disable when done
debug: false
logging:
  detailed-logs: false

Log Analysis

Common log patterns and their meanings:

[INFO] [LilChunks] Started chunk generation for world: world
[INFO] [LilChunks] Generation progress: 50/441 chunks (11%)
[INFO] [LilChunks] Generation completed for world: world

Meaning: Everything working normally

Plugin Conflicts

Common plugin conflicts and solutions:

Getting Help

Information to Provide

When seeking help, provide this information:

# Server details
/version
java -version

# Plugin list
/plugins

# LilChunks version
/lc help

Support Channels

GitHub Issues

Report bugs and request features on the official repository

Discord Community

Get help from the community and developers

Documentation

Check the complete documentation for solutions

Wiki

Community-maintained troubleshooting guides

Prevention Tips

Emergency Procedures

Server Unresponsive

If LilChunks causes server to become unresponsive:

1

Force Stop Server

# Kill server process
pkill -f "java.*server.jar"

# Or use server management tools
screen -r minecraft
# Ctrl+C to force stop
2

Disable LilChunks

# Rename plugin to prevent loading
mv plugins/lilchunks*.jar plugins/lilchunks*.jar.disabled
3

Start Server

# Start server without LilChunks
java -jar server.jar
4

Investigate Issue

# Check logs for errors
grep -i "error\|exception\|outofmemory" logs/latest.log

# Review configuration
cat plugins/LilChunks/config.yml
5

Fix and Re-enable

# Fix configuration issues
# Re-enable plugin
mv plugins/lilchunks*.jar.disabled plugins/lilchunks*.jar

# Restart server

Next Steps