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
+1 -1
View File
@@ -32,7 +32,7 @@ static std::shared_ptr<Inventory> get_inventory(int64_t id, int arg) {
}
static void validate_slotid(int slotid, Inventory* inv) {
if (slotid < 0 || uint64_t(slotid) >= inv->size()) {
if (static_cast<size_t>(slotid) >= inv->size()) {
throw std::runtime_error("slot index is out of range [0..inventory.size(invid)]");
}
}