implement actual items dropping

This commit is contained in:
MihailRis
2024-07-02 23:36:38 +03:00
parent 89afcd15db
commit 5b154b57b3
4 changed files with 22 additions and 15 deletions
+3
View File
@@ -12,6 +12,9 @@ ItemStack::ItemStack(itemid_t item, itemcount_t count) : item(item), count(count
void ItemStack::set(const ItemStack& item) {
this->item = item.item;
this->count = item.count;
if (count == 0) {
this->item = 0;
}
}
bool ItemStack::accepts(const ItemStack& other) const {