I run your plugin from the /addons/counterstrikesharp/plugins/disabled/ folder as I only want it on sometimes and manually trigger it to load.
Due to the way you get the config path, it creates the configs in /addons/counterstrikesharp/plugins/configs/ instead of using the correct configs path /addons/counterstrikesharp/configs/.
This is the culprit line:
|
_moduleDirectory = Path.Combine(_plugin.ModuleDirectory, "../../configs/plugins/RollTheDice"); |
CSSharp now has standardised ways to get the config path since you last worked on the plugin.
I run your plugin from the
/addons/counterstrikesharp/plugins/disabled/folder as I only want it on sometimes and manually trigger it to load.Due to the way you get the config path, it creates the configs in
/addons/counterstrikesharp/plugins/configs/instead of using the correct configs path/addons/counterstrikesharp/configs/.This is the culprit line:
CS2-RollTheDice-Plugin/config/EffectConfig.cs
Line 20 in 61a2be1
CSSharp now has standardised ways to get the config path since you last worked on the plugin.