Keep Server Unpaused

Unfortunately, Foundry automatically pauses the game when the server is launched and it has no way of saving that state. It is also a client side setting so a simple macro can let your players unpause it for themselves :

if (game.paused) game.togglePause()

Create a script macro with the above code and make it available to your players to click on to unpause the game whenever they need to.

1 Like