[Patcher] Fixed unitialized variable. is_any_plugin_loaded_
This will resolve random: [plugins applied] note
This commit is contained in:
parent
2a4d7feaae
commit
44fc8f9412
|
@ -29,6 +29,7 @@ PluginLoader::PluginLoader(kernel::KernelState* kernel_state,
|
|||
const std::filesystem::path plugins_root) {
|
||||
kernel_state_ = kernel_state;
|
||||
plugins_root_ = plugins_root;
|
||||
is_any_plugin_loaded_ = false;
|
||||
|
||||
if (!cvars::allow_plugins) {
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue