rename "Eclipse the Sun with Jupiter" achievement to "Enter Jupiter's Shadow"
This commit is contained in:
parent
fb82e3cc29
commit
441efcabef
|
@ -508,7 +508,7 @@ fn handle_achievement_event(
|
|||
AchievementEvent::InJupitersShadow => {
|
||||
if !tracker.in_jupiters_shadow {
|
||||
ew_game.send(GameEvent::Achievement(
|
||||
"Eclipse the sun with Jupiter".into(),
|
||||
"Enter Jupiter's Shadow".into(),
|
||||
));
|
||||
}
|
||||
tracker.in_jupiters_shadow = true;
|
||||
|
|
|
@ -405,7 +405,7 @@ impl AchievementTracker {
|
|||
format!("Ride Every Vehicle{ride}\n"),
|
||||
format!("Talk To Everyone{talk}\n"),
|
||||
"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)> {
|
||||
|
@ -417,7 +417,7 @@ impl AchievementTracker {
|
|||
(self.find_earth, "find Earth".into()),
|
||||
(
|
||||
self.in_jupiters_shadow,
|
||||
"eclipse the Sun with Jupiter".into(),
|
||||
"enter Jupiter's shadow".into(),
|
||||
),
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue