|
|
@ -82,6 +82,11 @@ pub enum InventoryItemAddToError { |
|
|
|
ExceedsCapacity,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Error, Debug, Clone)]
|
|
|
|
#[error("")]
|
|
|
|
pub enum InventoryAddError {
|
|
|
|
}
|
|
|
|
|
|
|
|
impl InventoryItem {
|
|
|
|
pub fn entity_ids(&self) -> Vec<ItemEntityId> {
|
|
|
|
match self {
|
|
|
@ -511,7 +516,7 @@ impl CharacterInventory { |
|
|
|
.nth(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn add_item(&mut self, item: InventoryItem) -> Result<(), ()> { // TODO: errors
|
|
|
|
pub fn add_item(&mut self, item: InventoryItem) -> Result<(), InventoryAddError> { // TODO: errors
|
|
|
|
// TODO: check slot conflict?
|
|
|
|
self.items.push(item);
|
|
|
|
Ok(())
|
|
|
|