diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-06-20 13:01:13 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-06-20 13:01:13 +0200 |
commit | d633f8a671c36916c6d6ad4fa0728dc1a7f74557 (patch) | |
tree | c1ce08853118fb3e8500b498d3e28280a9ca1bc2 /source/BlockEntities/FurnaceEntity.cpp | |
parent | Improved comment (diff) | |
download | cuberite-d633f8a671c36916c6d6ad4fa0728dc1a7f74557.tar cuberite-d633f8a671c36916c6d6ad4fa0728dc1a7f74557.tar.gz cuberite-d633f8a671c36916c6d6ad4fa0728dc1a7f74557.tar.bz2 cuberite-d633f8a671c36916c6d6ad4fa0728dc1a7f74557.tar.lz cuberite-d633f8a671c36916c6d6ad4fa0728dc1a7f74557.tar.xz cuberite-d633f8a671c36916c6d6ad4fa0728dc1a7f74557.tar.zst cuberite-d633f8a671c36916c6d6ad4fa0728dc1a7f74557.zip |
Diffstat (limited to '')
-rw-r--r-- | source/BlockEntities/FurnaceEntity.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/BlockEntities/FurnaceEntity.cpp b/source/BlockEntities/FurnaceEntity.cpp index ecbf715f2..d4dddfd89 100644 --- a/source/BlockEntities/FurnaceEntity.cpp +++ b/source/BlockEntities/FurnaceEntity.cpp @@ -24,6 +24,7 @@ enum cFurnaceEntity::cFurnaceEntity(int a_BlockX, int a_BlockY, int a_BlockZ) : super(E_BLOCK_FURNACE, a_BlockX, a_BlockY, a_BlockZ, ContentsWidth, ContentsHeight, NULL), + m_CurrentRecipe(NULL), m_IsCooking(false), m_NeedCookTime(0), m_TimeCooked(0), @@ -42,6 +43,7 @@ cFurnaceEntity::cFurnaceEntity(int a_BlockX, int a_BlockY, int a_BlockZ) : cFurnaceEntity::cFurnaceEntity(int a_BlockX, int a_BlockY, int a_BlockZ, cWorld * a_World) : super(E_BLOCK_FURNACE, a_BlockX, a_BlockY, a_BlockZ, ContentsWidth, ContentsHeight, a_World), + m_CurrentRecipe(NULL), m_IsCooking(false), m_NeedCookTime(0), m_TimeCooked(0), |