Skip to content

Commit 84f2e1a

Browse files
kjack9pangolpWinfidonarleyan
authored
(feature) allow config to be reloaded without server restart. (#38)
* Allow config to be reloaded without server restart. * comment unused variables --------- Co-authored-by: Walter Pagani <[email protected]> Co-authored-by: Winfidonarleyan <[email protected]>
1 parent 99eac7f commit 84f2e1a

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/Solocraft.cpp

+4-6
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,10 @@ class SolocraftConfig : public WorldScript
4040
public:
4141
SolocraftConfig() : WorldScript("SolocraftConfig") {}
4242

43-
void OnBeforeConfigLoad(bool reload) override
43+
void OnBeforeConfigLoad(bool /*reload*/) override
4444
{
45-
if (!reload) {
46-
// Load Configuration Settings
47-
SetInitialWorldSettings();
48-
}
45+
// Load Configuration Settings
46+
SetInitialWorldSettings();
4947
}
5048

5149
// Load Configuration Settings
@@ -528,7 +526,7 @@ class SolocraftPlayerInstanceHandler : public PlayerScript
528526

529527
int SpellPowerBonus = 0;
530528

531-
// Check for an existing No XP Gain flag - other mod compatibility
529+
// Check for an existing No XP Gain flag - other mod compatibility
532530
if (player->HasFlag(PLAYER_FLAGS, PLAYER_FLAGS_NO_XP_GAIN))
533531
{
534532
SolocraftNoXPFlag = 1;

0 commit comments

Comments
 (0)