From a32a7130f424712a2e0d4e7aef58fb958a6a2bd2 Mon Sep 17 00:00:00 2001 From: jake Date: Mon, 27 Apr 2020 06:55:37 -0600 Subject: [PATCH] cleanup --- src/ship/drops/mod.rs | 8 -------- 1 file changed, 8 deletions(-) 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");