diff --git a/src/var.rs b/src/var.rs index 28ff9a4..8449bf3 100644 --- a/src/var.rs +++ b/src/var.rs @@ -356,21 +356,21 @@ impl AchievementTracker { let talk = collectible(self.people_talked_to.len(), self.all_people.len()); vec![ "Repair Your Suit\n".to_string(), - "Consume A Pizza\n".to_string(), + "Enjoy A Pizza\n".to_string(), format!("Ride Every Vehicle{ride}\n"), format!("Talk To Everyone{talk}\n"), "Find Earth\n".to_string(), - "Let Jupiter Eclipse The Sun\n".to_string(), + "Eclipse the sun with Jupiter\n".to_string(), ] } pub fn to_overview(&self) -> Vec<(bool, String)> { vec![ (self.repair_suit, "repair your suit".into()), - (self.drink_a_pizza, "consume a pizza".into()), + (self.drink_a_pizza, "enjoy a pizza".into()), (self.ride_every_vehicle, "ride every vehicle".into()), (self.talk_to_everyone, "talk to everyone".into()), (self.find_earth, "find Earth".into()), - (self.in_jupiters_shadow, "let Jupiter eclipse the Sun".into()), + (self.in_jupiters_shadow, "eclipse the Sun with Jupiter".into()), ] } pub fn to_summary(&self) -> String {