fixed G_AddPlayer not sending return value

This commit is contained in:
Shane Ellis 2021-01-15 22:50:15 -05:00
parent 0e9b4acb58
commit b73a15a0bf

View file

@ -3479,7 +3479,7 @@ static int lib_gAddPlayer(lua_State *L)
}
LUA_PushUserdata(L, newplayer, META_PLAYER);
return 0;
return 1;
}