refactor: distribution

This commit is contained in:
cha0s 2024-09-29 06:32:06 -05:00
parent fec717cbe1
commit 0cdabd0858

View File

@ -208,18 +208,25 @@ export default class Inventory extends Component {
}
}
const {qty} = slots[slot];
slots[slot].qty = 0;
slots[slot].qty -= qty;
for (let i = 0; i < qty; ++i) {
const [entityId, destination] = destinations[i % destinations.length];
const {Inventory} = ecs.get(entityId);
const {slots} = Inventory;
slots[destination].qty += 1;
}
if (!destinations.find(([entityId, destination]) => {
return entityId == this.entity && destination === slot;
})) {
if (0 === slots[slot].qty) {
this.clear(slot);
}
else {
if (
!destinations.find(([entityId, destination]) => {
return entityId == this.entity && destination === slot;
})
) {
Component.markChange(this.entity, 'qtyUpdated', {[slot]: -qty});
}
}
for (const [entityId, destination] of given) {
const {Inventory} = ecs.get(entityId);
const {slots} = Inventory;