diff options
author | BobTheBob9 <for.oliver.kirkham@gmail.com> | 2022-09-15 00:23:49 +0100 |
---|---|---|
committer | BobTheBob9 <for.oliver.kirkham@gmail.com> | 2022-09-15 00:23:49 +0100 |
commit | 3e50dd29261f439800932ccad2eb9febc32d31d9 (patch) | |
tree | 390a72141d3bb1ee83ebc8a14284fe17c5fcf567 /NorthstarDLL/miscserverscript.cpp | |
parent | ba26be9bea801f219fa6340178fd6b13f02d574e (diff) | |
download | NorthstarLauncher-3e50dd29261f439800932ccad2eb9febc32d31d9.tar.gz NorthstarLauncher-3e50dd29261f439800932ccad2eb9febc32d31d9.zip |
fix more formatting
Diffstat (limited to 'NorthstarDLL/miscserverscript.cpp')
-rw-r--r-- | NorthstarDLL/miscserverscript.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/NorthstarDLL/miscserverscript.cpp b/NorthstarDLL/miscserverscript.cpp index 3b30dd23..7ae8047f 100644 --- a/NorthstarDLL/miscserverscript.cpp +++ b/NorthstarDLL/miscserverscript.cpp @@ -59,6 +59,7 @@ ON_DLL_LOAD_RELIESON("server.dll", MiscServerScriptCommands, ServerSquirrel, (CM g_pSquirrel<ScriptContext::SERVER>->AddFuncRegistration( "void", "NSEarlyWritePlayerIndexPersistenceForLeave", "int playerIndex", "", SQ_EarlyWritePlayerIndexPersistenceForLeave); g_pSquirrel<ScriptContext::SERVER>->AddFuncRegistration("bool", "NSIsWritingPlayerPersistence", "", "", SQ_IsWritingPlayerPersistence); - g_pSquirrel<ScriptContext::SERVER>->AddFuncRegistration("bool", "NSIsPlayerIndexLocalPlayer", "int playerIndex", "", SQ_IsPlayerIndexLocalPlayer); + g_pSquirrel<ScriptContext::SERVER>->AddFuncRegistration( + "bool", "NSIsPlayerIndexLocalPlayer", "int playerIndex", "", SQ_IsPlayerIndexLocalPlayer); g_pSquirrel<ScriptContext::SERVER>->AddFuncRegistration("bool", "NSIsDedicated", "", "", SQ_IsDedicated); } |