oddlama / vane

Immersive and lore friendly enhancements for vanilla Minecraft
MIT License
250 stars 31 forks source link

Question #213

Closed Zephira58 closed 10 months ago

Zephira58 commented 10 months ago

What is autostop and what does it do? I can't seem to find any real documentation about it either ingame, on modrinth or here on the wiki page.

oddlama commented 10 months ago

Well, it stops your server after a set amount of time if nobody's online. All the options (as opposed to player features) are usually documented in the config file instead of online:

# plugins/vane-admin/config.yml

# ...
autostop:
  # Enable automatic server stop after certain time without online players.
  # Default: true
  enabled: true

  command_autostop:
    # Enable command autostop
    # Default: true
    enabled: true

  # Delay in seconds after which to stop the server.
  # Valid values: [0,)
  # Default: 1200
  delay: 1200
Zephira58 commented 10 months ago

Ah I see thank you, I'm so used to all the resources being online in formats such as wiki pages I didn't even think to check the config itself