Skip to content

Commit 623b28b

Browse files
committed
fix for changes in MTASA 1.4 build
1 parent aecb203 commit 623b28b

File tree

3 files changed

+32
-1
lines changed

3 files changed

+32
-1
lines changed

ml_curl/ml_system.cpp

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,3 +293,14 @@ MTAEXPORT bool ShutdownModule ( void )
293293
delete mtacurls;
294294
return true;
295295
}
296+
297+
298+
MTAEXPORT bool ResourceStopping ( lua_State * luaVM )
299+
{
300+
return true;
301+
}
302+
303+
MTAEXPORT bool ResourceStopped ( lua_State * luaVM )
304+
{
305+
return true;
306+
}

ml_system/ml_system.cpp

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,14 @@ MTAEXPORT bool ShutdownModule ( void )
4545
{
4646
return true;
4747
}
48+
49+
50+
MTAEXPORT bool ResourceStopping ( lua_State * luaVM )
51+
{
52+
return true;
53+
}
54+
55+
MTAEXPORT bool ResourceStopped ( lua_State * luaVM )
56+
{
57+
return true;
58+
}

mta-mysql/src/module.cpp

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,13 @@ MTAEXPORT bool ShutdownModule(void)
117117
{
118118
return true;
119119
}
120-
120+
121+
MTAEXPORT bool ResourceStopping ( lua_State * luaVM )
122+
{
123+
return true;
124+
}
125+
126+
MTAEXPORT bool ResourceStopped ( lua_State * luaVM )
127+
{
128+
return true;
129+
}

0 commit comments

Comments
 (0)