Main Configuration

The config.yml file in the root of the plugins/ClearLaggEnhanced/ folder is the primary control center for the plugin.

Module System

ClearLaggEnhanced uses a modular system. In the config.yml, you can globally enable or disable entire modules.

modules:
  entity-clearing: true
  mob-limiter: true
  spawner-limiter: true
  misc-entity-limiter: true
  chunk-finder: true
  performance: true
  • true: The module is active and its specific settings will be loaded from the modules/ folder.
  • false: The module is completely disabled and will not run.

Each module has its own configuration file in the modules/<module-name>/config.yml path. See the Module Configuration page for more details.

Database Settings

The database section determines where the plugin stores its data (such as statistics and entity records).

database:
  enabled: true
  type: "sqlite" # sqlite or mysql
  file: "clearlagg.db"
  mysql:
    host: "localhost"
    port: 3306
    # ... more settings ...