Can it be set to change pop on startup?

The plugin seems to wait until the first player login to start managing poulation, is there a way to have it start when thee pugin is loaded?

You can try to set the minimum on the hosting, and then after connecting the players, the plug-in will manage it

These modifictions to `Init()` seem to work for me:

  • Add `return;` inside the second `if()` block, at the end of the existing logic. This prevents it from taking effect when the plugin is not "enabled" (e.g. on first load when the admin has not tweaked the default configuration yet).
  • Add `UpdatePop();` after the second `if()` block, outside of the block (i.e. at the very end of `Init()`).


Merged post

Update: Can't seem to edit my post, so I'll add here that apparently my tweaks only work if you (re)load the plugin while the server is already running, but don't seem to work when (re)starting the server with the plugin already configured. I'm not sure why that's the case - maybe the plugin loads and initializes before the server applies default max population or something.