mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Inventory mouse shortcut improvements (#13146)
Co-authored-by: Muhammad Rifqi Priyo Susanto <muhammadrifqipriyosusanto@gmail.com>
This commit is contained in:
parent
23f7aab354
commit
252c79d53a
7 changed files with 520 additions and 168 deletions
|
@ -392,6 +392,13 @@ bool ItemStack::itemFits(ItemStack newitem,
|
|||
return newitem.empty();
|
||||
}
|
||||
|
||||
bool ItemStack::stacksWith(ItemStack other) const
|
||||
{
|
||||
return (this->name == other.name &&
|
||||
this->wear == other.wear &&
|
||||
this->metadata == other.metadata);
|
||||
}
|
||||
|
||||
ItemStack ItemStack::takeItem(u32 takecount)
|
||||
{
|
||||
if(takecount == 0 || count == 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue