Fix copy-paste error (#1446)

This commit is contained in:
Sainan 2023-06-17 14:17:46 +01:00 committed by GitHub
parent 5848599c60
commit 853061a7b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -125,7 +125,7 @@ BOOL APIENTRY DllMain(HMODULE hmod, DWORD reason, PVOID)
g_script_mgr.add_script(std::make_unique<script>(&backend::vehicle_control, "Vehicle Control"));
g_script_mgr.add_script(std::make_unique<script>(&context_menu_service::context_menu, "Context Menu"));
g_script_mgr.add_script(std::make_unique<script>(&backend::tunables_script, "Tunables"));
g_script_mgr.add_script(std::make_unique<script>(&backend::squad_spawner, "Tunables"));
g_script_mgr.add_script(std::make_unique<script>(&backend::squad_spawner, "Squad Spawner"));
LOG(INFO) << "Scripts registered.";