File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ namespace GameEventManager
86
86
{
87
87
IGameEventManager2 *manager = global::engine_loader.GetInterface <IGameEventManager2>(
88
88
INTERFACEVERSION_GAMEEVENTSMANAGER2
89
- );
89
+ );
90
90
if ( manager == nullptr )
91
91
LUA->ThrowError ( " failed to obtain IGameEventManager2" );
92
92
Original file line number Diff line number Diff line change @@ -87,11 +87,11 @@ namespace global
87
87
{
88
88
LUA->CreateTable ( );
89
89
90
- LUA->PushString ( " sourcenet 1.1.11 " );
90
+ LUA->PushString ( " sourcenet 1.1.12 " );
91
91
LUA->SetField ( -2 , " Version" );
92
92
93
93
// version num follows LuaJIT style, xxyyzz
94
- LUA->PushNumber ( 10111 );
94
+ LUA->PushNumber ( 10112 );
95
95
LUA->SetField ( -2 , " VersionNum" );
96
96
97
97
LUA->SetField ( GarrysMod::Lua::INDEX_GLOBAL, " sourcenet" );
Original file line number Diff line number Diff line change @@ -69,15 +69,15 @@ namespace NetworkStringTableContainer
69
69
70
70
INetworkStringTableContainer *container = global::engine_loader.GetInterface <INetworkStringTableContainer>(
71
71
INTERFACENAME_NETWORKSTRINGTABLESERVER
72
- );
72
+ );
73
73
if ( container == nullptr )
74
74
LUA->ThrowError ( " failed to obtain INetworkStringTableContainer" );
75
75
76
76
#elif defined SOURCENET_CLIENT
77
77
78
78
INetworkStringTableContainer *container = global::engine_loader.GetInterface <INetworkStringTableContainer>(
79
79
INTERFACENAME_NETWORKSTRINGTABLECLIENT
80
- );
80
+ );
81
81
if ( container == nullptr )
82
82
LUA->ThrowError ( " failed to obtain INetworkStringTableContainer" );
83
83
Original file line number Diff line number Diff line change @@ -241,7 +241,7 @@ namespace DataPack
241
241
INetworkStringTableContainer *networkstringtable =
242
242
global::engine_loader.GetInterface <INetworkStringTableContainer>(
243
243
INTERFACENAME_NETWORKSTRINGTABLESERVER
244
- );
244
+ );
245
245
if ( networkstringtable == nullptr )
246
246
LUA->ThrowError ( " unable to get INetworkStringTableContainer" );
247
247
You can’t perform that action at this time.
0 commit comments