forked from Mirrorlandia_minetest/minetest
Ensure no item stack is being held before crafting (#4779)
This commit is contained in:
parent
48ebbf0fc6
commit
6f80e302fd
@ -3681,18 +3681,24 @@ bool GUIFormSpecMenu::OnEvent(const SEvent& event)
|
|||||||
a->from_i = m_selected_item->i;
|
a->from_i = m_selected_item->i;
|
||||||
m_invmgr->inventoryAction(a);
|
m_invmgr->inventoryAction(a);
|
||||||
} else if (craft_amount > 0) {
|
} else if (craft_amount > 0) {
|
||||||
m_selected_content_guess = ItemStack(); // Clear
|
|
||||||
|
|
||||||
// Send IACTION_CRAFT
|
|
||||||
|
|
||||||
assert(s.isValid());
|
assert(s.isValid());
|
||||||
assert(inv_s);
|
|
||||||
|
// if there are no items selected or the selected item
|
||||||
|
// belongs to craftresult list, proceed with crafting
|
||||||
|
if (m_selected_item == NULL ||
|
||||||
|
!m_selected_item->isValid() || m_selected_item->listname == "craftresult") {
|
||||||
|
|
||||||
|
m_selected_content_guess = ItemStack(); // Clear
|
||||||
|
|
||||||
|
assert(inv_s);
|
||||||
|
|
||||||
infostream << "Handing IACTION_CRAFT to manager" << std::endl;
|
// Send IACTION_CRAFT
|
||||||
ICraftAction *a = new ICraftAction();
|
infostream << "Handing IACTION_CRAFT to manager" << std::endl;
|
||||||
a->count = craft_amount;
|
ICraftAction *a = new ICraftAction();
|
||||||
a->craft_inv = s.inventoryloc;
|
a->count = craft_amount;
|
||||||
m_invmgr->inventoryAction(a);
|
a->craft_inv = s.inventoryloc;
|
||||||
|
m_invmgr->inventoryAction(a);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// If m_selected_amount has been decreased to zero, deselect
|
// If m_selected_amount has been decreased to zero, deselect
|
||||||
|
Loading…
Reference in New Issue
Block a user