Files
Techmino/parts/modes/netBattle.lua
2021-02-07 03:50:24 +08:00

15 lines
248 B
Lua

return{
color=COLOR.white,
env={
--TODO: ?
},
load=function(playerData)
PLY.newPlayer(1)
if playerData[1]then
PLAYERS[1].subID=playerData[1].sid
end
for i=2,#playerData do
PLY.newRemotePlayer(i,false,playerData[i])
end
end,
}