1
0
Fork 0

APIDump: Fixed descriptions for cWorld:ChunkStay.

This commit is contained in:
Mattes D 2016-10-06 22:34:19 +02:00
parent e2f5187217
commit 59c77ca3db
1 changed files with 2 additions and 0 deletions

View File

@ -14048,10 +14048,12 @@ end
{
Name = "OnChunkAvailable",
Type = "function",
IsOptional = true,
},
{
Name = "OnAllChunksAvailable",
Type = "function",
IsOptional = true,
},
},
Notes = "Queues the specified chunks to be loaded or generated and calls the specified callbacks once they are loaded. ChunkCoordTable is an arra-table of chunk coords, each coord being a table of 2 numbers: { {Chunk1x, Chunk1z}, {Chunk2x, Chunk2z}, ...}. When any of those chunks are made available (including being available at the start of this call), the OnChunkAvailable() callback is called. When all the chunks are available, the OnAllChunksAvailable() callback is called. The function signatures are: <pre class=\"prettyprint lang-lua\">function OnChunkAvailable(ChunkX, ChunkZ)\