From 56071a15379a1b61f17d2df8d16dcd50e5145cd2 Mon Sep 17 00:00:00 2001 From: Llywelwyn Date: Thu, 31 Aug 2023 03:47:09 +0100 Subject: [PATCH] w --- src/gui/character_creation.rs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/gui/character_creation.rs b/src/gui/character_creation.rs index a2cde6d..5abf31d 100644 --- a/src/gui/character_creation.rs +++ b/src/gui/character_creation.rs @@ -416,14 +416,7 @@ fn get_starting_inventory( Class::Rogue => { starting_food = ROGUE_STARTING_FOOD; equipped = vec![ROGUE_STARTING_WEAPON.to_string(), ROGUE_STARTING_ARMOUR.to_string()]; - carried = vec![ - "equip_dagger".to_string(), - "equip_dagger".to_string(), - "scroll_confusion".to_string(), - "scroll_confusion".to_string(), - "scroll_confusion".to_string(), - "scroll_confusion".to_string() - ]; + carried = vec!["equip_dagger".to_string(), "equip_dagger".to_string()]; } Class::Wizard => { starting_food = WIZARD_STARTING_FOOD;