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;