diff --git a/src/ship/drops/mod.rs b/src/ship/drops/mod.rs index 0f2e7c3..65aa1e2 100644 --- a/src/ship/drops/mod.rs +++ b/src/ship/drops/mod.rs @@ -98,13 +98,6 @@ pub struct ItemDrop { pub item: ItemDropType, } -impl ItemDrop { - pub fn as_client_bytes(&self) -> u8 { - 0 - } -} - - pub struct DropTable { monster_stats: HashMap, @@ -118,7 +111,6 @@ pub struct DropTable { rng: R, } - impl DropTable { pub fn new(episode: Episode, difficulty: Difficulty, section_id: SectionID) -> DropTable { let monster_stats: HashMap = load_data_file(episode, difficulty, section_id, "monster_dar.toml");