@ -134,12 +134,4 @@ pub trait EntityGateway: Send + Sync + Clone {
async fn increment_kill_counter(&mut self, _item_entity_id: &ItemEntityId) -> Result<(), GatewayError> {
unimplemented!();
}
async fn get_kill_counter() {
async fn set_kill_counter() {
@ -356,12 +356,4 @@ impl EntityGateway for InMemoryGateway {
Ok(())
println!("src/entity/gateway/inmemory.rs::get_kill_counter() - unimplemented!");
println!("src/entity/gateway/inmemory.rs::set_kill_counter() - unimplemented!");
@ -184,8 +184,6 @@ impl ItemDetail {
// TODO: delete this
// jk actually we need this
pub fn increment_kill_counter(&mut self) {
match self {
ItemDetail::Weapon(w) => {w.increment_kill_counter()},