rename "Eclipse the Sun with Jupiter" achievement to "Enter Jupiter's Shadow"

This commit is contained in:
yuni 2024-07-14 20:24:39 +02:00
parent fb82e3cc29
commit 441efcabef
2 changed files with 3 additions and 3 deletions

View file

@ -508,7 +508,7 @@ fn handle_achievement_event(
AchievementEvent::InJupitersShadow => { AchievementEvent::InJupitersShadow => {
if !tracker.in_jupiters_shadow { if !tracker.in_jupiters_shadow {
ew_game.send(GameEvent::Achievement( ew_game.send(GameEvent::Achievement(
"Eclipse the sun with Jupiter".into(), "Enter Jupiter's Shadow".into(),
)); ));
} }
tracker.in_jupiters_shadow = true; tracker.in_jupiters_shadow = true;

View file

@ -405,7 +405,7 @@ impl AchievementTracker {
format!("Ride Every Vehicle{ride}\n"), format!("Ride Every Vehicle{ride}\n"),
format!("Talk To Everyone{talk}\n"), format!("Talk To Everyone{talk}\n"),
"Find Earth\n".to_string(), "Find Earth\n".to_string(),
"Eclipse The Sun With Jupiter\n".to_string(), "Enter Jupiter's Shadow\n".to_string(),
] ]
} }
pub fn to_overview(&self) -> Vec<(bool, String)> { pub fn to_overview(&self) -> Vec<(bool, String)> {
@ -417,7 +417,7 @@ impl AchievementTracker {
(self.find_earth, "find Earth".into()), (self.find_earth, "find Earth".into()),
( (
self.in_jupiters_shadow, self.in_jupiters_shadow,
"eclipse the Sun with Jupiter".into(), "enter Jupiter's shadow".into(),
), ),
] ]
} }