1
0
This commit is contained in:
Alexander Harkness 2014-10-16 20:21:33 +01:00
parent 818c7948b7
commit 59902c28f2

View File

@ -58,13 +58,13 @@ cFurnaceEntity::~cFurnaceEntity()
void cFurnaceEntity::UsedBy(cPlayer * a_Player)
{
cWindow * Window = GetWindow();
if (Window == NULL)
if (Window == nullptr)
{
OpenWindow(new cFurnaceWindow(m_PosX, m_PosY, m_PosZ, this));
Window = GetWindow();
}
if (Window != NULL)
if (Window != nullptr)
{
if (a_Player->GetWindow() != Window)
{