mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-27 04:41:23 +00:00
Fixed NetVars hook mistakenly assuming index starts from 0.
This commit is contained in:
parent
775ccde424
commit
52e2087ee7
1 changed files with 2 additions and 2 deletions
|
@ -743,7 +743,7 @@ static int NetArchive(lua_State *L)
|
|||
{
|
||||
int TABLESINDEX = lua_upvalueindex(1);
|
||||
int i, n = lua_gettop(L);
|
||||
for (i = 0; i < n; i++)
|
||||
for (i = 1; i <= n; i++)
|
||||
ArchiveValue(TABLESINDEX, i);
|
||||
return n;
|
||||
}
|
||||
|
@ -893,7 +893,7 @@ static int NetUnArchive(lua_State *L)
|
|||
{
|
||||
int TABLESINDEX = lua_upvalueindex(1);
|
||||
int i, n = lua_gettop(L);
|
||||
for (i = 0; i < n; i++)
|
||||
for (i = 1; i <= n; i++)
|
||||
UnArchiveValue(TABLESINDEX);
|
||||
return n;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue