From 5d219dab283e6769319440d37750803b5f991268 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sun, 3 Mar 2013 14:25:27 +0000 Subject: Simulators now check if they are given a valid chunk git-svn-id: http://mc-server.googlecode.com/svn/trunk@1244 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/Simulator/FireSimulator.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source/Simulator/FireSimulator.cpp') diff --git a/source/Simulator/FireSimulator.cpp b/source/Simulator/FireSimulator.cpp index c9ade90c9..0e6c1fac1 100644 --- a/source/Simulator/FireSimulator.cpp +++ b/source/Simulator/FireSimulator.cpp @@ -187,6 +187,11 @@ bool cFireSimulator::IsForever(BLOCKTYPE a_BlockType) void cFireSimulator::AddBlock(int a_BlockX, int a_BlockY, int a_BlockZ, cChunk * a_Chunk) { + if (a_Chunk == NULL) + { + return; + } + int RelX = a_BlockX - a_Chunk->GetPosX() * cChunkDef::Width; int RelZ = a_BlockZ - a_Chunk->GetPosZ() * cChunkDef::Width; BLOCKTYPE BlockType = a_Chunk->GetBlock(RelX, a_BlockY, RelZ); -- cgit v1.2.3