Added proper debug messages
This commit is contained in:
parent
c0e7d6fec9
commit
f4f0099947
@ -238,19 +238,24 @@ bool cHopperEntity::MovePickupsIn(cChunk & a_Chunk, Int64 a_CurrentTick)
|
|||||||
m_bFoundPickupsAbove = true;
|
m_bFoundPickupsAbove = true;
|
||||||
m_Contents.SetSlot(i, a_Pickup->GetItem());
|
m_Contents.SetSlot(i, a_Pickup->GetItem());
|
||||||
a_Pickup->Destroy(); // Kill pickup
|
a_Pickup->Destroy(); // Kill pickup
|
||||||
|
|
||||||
|
LOGD("Hopper sucking pickup into an empty slot");
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
else if (m_Contents.GetSlot(i).IsEqual(a_Pickup->GetItem()) && !m_Contents.GetSlot(i).IsFullStack())
|
else if (m_Contents.GetSlot(i).IsEqual(a_Pickup->GetItem()) && !m_Contents.GetSlot(i).IsFullStack())
|
||||||
{
|
{
|
||||||
m_bFoundPickupsAbove = true;
|
m_bFoundPickupsAbove = true;
|
||||||
LOGINFO("Previous counts, pickup: %i, hopper: %i", (int)a_Pickup->GetItem().m_ItemCount, (int)m_Contents.GetSlot(i).m_ItemCount);
|
|
||||||
|
LOGD("Hopper sucking pickup; previous counts, pickup: %i, hopper: %i", (int)a_Pickup->GetItem().m_ItemCount, (int)m_Contents.GetSlot(i).m_ItemCount);
|
||||||
|
|
||||||
int PreviousCount = m_Contents.GetSlot(i).m_ItemCount;
|
int PreviousCount = m_Contents.GetSlot(i).m_ItemCount;
|
||||||
a_Pickup->GetItem().m_ItemCount -= m_Contents.ChangeSlotCount(i, a_Pickup->GetItem().m_ItemCount) - PreviousCount; // Set count to however many items were added
|
a_Pickup->GetItem().m_ItemCount -= m_Contents.ChangeSlotCount(i, a_Pickup->GetItem().m_ItemCount) - PreviousCount; // Set count to however many items were added
|
||||||
LOGINFO("After counts, pickup: %i, hopper: %i", (int)a_Pickup->GetItem().m_ItemCount, (int)m_Contents.GetSlot(i).m_ItemCount);
|
|
||||||
|
LOGD("Hopper sucking pickup; after counts, pickup: %i, hopper: %i", (int)a_Pickup->GetItem().m_ItemCount, (int)m_Contents.GetSlot(i).m_ItemCount);
|
||||||
|
|
||||||
if (a_Pickup->GetItem().IsEmpty())
|
if (a_Pickup->GetItem().IsEmpty())
|
||||||
{
|
{
|
||||||
//LOGINFO("Pickup was empty!");
|
|
||||||
a_Pickup->Destroy(); // Kill pickup if all items were added
|
a_Pickup->Destroy(); // Kill pickup if all items were added
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user