this was hidden in some debug code I was skipping over
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
jake 2023-02-18 18:09:11 -07:00
parent aa036ed5d7
commit f5c71ced17

View File

@ -551,7 +551,7 @@ where
let mut transaction = tool.with_entity_id(transaction, |mut transaction, entity_id| { let mut transaction = tool.with_entity_id(transaction, |mut transaction, entity_id| {
async move { async move {
transaction.gateway().add_item_note(&entity_id, ItemNote::FedToMag { transaction.gateway().add_item_note(&entity_id, ItemNote::FedToMag {
//character_id: character.id, character_id: character.id,
mag: mag_entity_id, mag: mag_entity_id,
}).await?; }).await?;
transaction.gateway().feed_mag(&mag_entity_id, &entity_id).await?; transaction.gateway().feed_mag(&mag_entity_id, &entity_id).await?;
@ -1241,4 +1241,4 @@ where
Ok(((item_state, transaction), ())) Ok(((item_state, transaction), ()))
}) })
} }
} }