aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/miscserverscript.cpp
diff options
context:
space:
mode:
authorBobTheBob9 <for.oliver.kirkham@gmail.com>2022-09-15 00:23:49 +0100
committerBobTheBob9 <for.oliver.kirkham@gmail.com>2022-09-15 00:23:49 +0100
commit3e50dd29261f439800932ccad2eb9febc32d31d9 (patch)
tree390a72141d3bb1ee83ebc8a14284fe17c5fcf567 /NorthstarDLL/miscserverscript.cpp
parentba26be9bea801f219fa6340178fd6b13f02d574e (diff)
downloadNorthstarLauncher-3e50dd29261f439800932ccad2eb9febc32d31d9.tar.gz
NorthstarLauncher-3e50dd29261f439800932ccad2eb9febc32d31d9.zip
fix more formatting
Diffstat (limited to 'NorthstarDLL/miscserverscript.cpp')
-rw-r--r--NorthstarDLL/miscserverscript.cpp3
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);
}