How to set always day?

where in the config file is the option to set to always day?

# Number of players needed to skip night
players_needed_to_skip = 1
# Prevent skipping night when players sleep
prevent_skipping_night = false

prevent_skipping_night = true

ok I changed that setting and restarted the server but it's still going to night

Merged post

we also noticed that we cannot sleep at all anymore...only resting seems to be allowed

You don't need to restart the server, only the plugin needs to be reloaded if you don't have configuration watching enabled.

This isn't a true "always day" plugin, it was made mainly to prevent players skipping or allow skipping with less players. The plugin basically prevents players from sleeping, which in term prevents time changes. I'll likely advance that handling for better time control.

I've never heard of configuration watching.  How do I reload a plugin?   I know how to do it on a Rust server but it doens't seem like I can type in the valheim server console at all.

There's a setting under umod/plugins.toml that you can set to true to have configurations automatically reloaded ok changes.

ok I found the watchers section in the config file:

[watchers]
# Enable/disable automatic configuration file reloading
config_watchers = false
# Enable/disable automatic plugin loading/reloading
plugin_watchers = true
# List of directories to load plugins from
plugin_directories = [ "universal" ]

the changes I'm trying:
[watchers]
# Enable/disable automatic configuration file reloading
config_watchers = true
# Enable/disable automatic plugin loading/reloading
plugin_watchers = true
# List of directories to load plugins from
plugin_directories = [ "universal" ]

Do I need to specity the full path where it says universal?   for example:
# List of directories to load plugins from
plugin_directories = [ "x:\Valheim\umod\plugins" ]

The directories setting isn't used like that, and isn't usable yet.

ok thank you