mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-30 21:11:00 +00:00
Merge branch 'lua-archive' into 'next'
Fix dedicated server extra lua variables not being synched for joiners See merge request KartKrew/Kart-Public!75
This commit is contained in:
commit
eabe8fbadd
1 changed files with 2 additions and 2 deletions
|
@ -1020,7 +1020,7 @@ void LUA_Archive(void)
|
||||||
|
|
||||||
for (i = 0; i < MAXPLAYERS; i++)
|
for (i = 0; i < MAXPLAYERS; i++)
|
||||||
{
|
{
|
||||||
if (!playeringame[i])
|
if (!playeringame[i] && i > 0) // NEVER skip player 0, this is for dedi servs.
|
||||||
continue;
|
continue;
|
||||||
// all players in game will be archived, even if they just add a 0.
|
// all players in game will be archived, even if they just add a 0.
|
||||||
ArchiveExtVars(&players[i], "player");
|
ArchiveExtVars(&players[i], "player");
|
||||||
|
@ -1056,7 +1056,7 @@ void LUA_UnArchive(void)
|
||||||
|
|
||||||
for (i = 0; i < MAXPLAYERS; i++)
|
for (i = 0; i < MAXPLAYERS; i++)
|
||||||
{
|
{
|
||||||
if (!playeringame[i])
|
if (!playeringame[i] && i > 0) // same here, this is to synch dediservs properly.
|
||||||
continue;
|
continue;
|
||||||
UnArchiveExtVars(&players[i]);
|
UnArchiveExtVars(&players[i]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue