Fixed the same leak in FireSimulator

git-svn-id: http://mc-server.googlecode.com/svn/trunk@253 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
faketruth
2012-02-14 12:29:39 +00:00
parent eaa17b6a84
commit 504803cb6d
2 changed files with 18 additions and 18 deletions
+4 -3
View File
@@ -25,8 +25,9 @@ protected:
virtual bool BurnBlockAround(int a_X, int a_Y, int a_Z);
virtual bool BurnBlock(int a_X, int a_Y, int a_Z);
std::vector <Vector3i *> *m_Blocks;
std::vector <Vector3i *> *m_Buffer;
typedef std::vector <Vector3i> BlockList;
BlockList *m_Blocks;
BlockList *m_Buffer;
std::vector <Vector3i *> *m_BurningBlocks;
BlockList *m_BurningBlocks;
};