summaryrefslogtreecommitdiffstats
path: root/source/BlockEntities/FurnaceEntity.cpp
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-06-20 13:01:13 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-06-20 13:01:13 +0200
commitd633f8a671c36916c6d6ad4fa0728dc1a7f74557 (patch)
treec1ce08853118fb3e8500b498d3e28280a9ca1bc2 /source/BlockEntities/FurnaceEntity.cpp
parentImproved comment (diff)
downloadcuberite-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 'source/BlockEntities/FurnaceEntity.cpp')
-rw-r--r--source/BlockEntities/FurnaceEntity.cpp2
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),