diff options
Diffstat (limited to '')
-rw-r--r-- | source/Chunk.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/Chunk.h b/source/Chunk.h index 5e679ed12..d7b7fbba6 100644 --- a/source/Chunk.h +++ b/source/Chunk.h @@ -270,6 +270,9 @@ public: /// Same as FastSetBlock(), but relative coords needn't be in this chunk (uses m_Neighbor-s or m_ChunkMap in such a case); returns true on success; only usable in Tick() bool UnboundedRelFastSetBlock(int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta); + + /// Same as QueueTickBlock(), but relative coords needn't be in this chunk (uses m_Neighbor-s in such a case), ignores unsuccessful attempts + void UnboundedQueueTickBlock(int a_RelX, int a_RelY, int a_RelZ); // Simulator data: cFireSimulatorChunkData & GetFireSimulatorData (void) { return m_FireSimulatorData; } |