diff --git a/apps/openmw-mp/Networking.cpp b/apps/openmw-mp/Networking.cpp index 84ae6d606..819f4974c 100644 --- a/apps/openmw-mp/Networking.cpp +++ b/apps/openmw-mp/Networking.cpp @@ -504,4 +504,14 @@ void Networking::postInit() { Script::Call(); samples = getPluginListSample(); + if(mclient) + { + for(auto plugin : samples) + { + if(!plugin.second.empty()) + mclient->PushPlugin({plugin.first, plugin.second[0]}); + else + mclient->PushPlugin({plugin.first, 0}); + } + } }