Skip to content

Commit 2509df0

Browse files
authored
Merge pull request #1661 from OutpostUniverse/Announcements
Added new announcement types for colony ship crashes with cargo and c…
2 parents 6315832 + bb7ed47 commit 2509df0

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

appOPHD/UI/MajorEventAnnouncement.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@ void MajorEventAnnouncement::announcement(AnnouncementType a)
3939
case AnnouncementType::ColonyShipCrashWithColonists:
4040
mMessage = "Colony ship deorbited and crashed on the surface but you left colonists on board!";
4141
break;
42+
case AnnouncementType::ColonyShipCrashWithCargo:
43+
mMessage = "Colony ship deorbited and crashed on the surface but you left cargo on board!";
44+
break;
45+
case AnnouncementType::ColonyShipCrashWithColonistsAndCargo:
46+
mMessage = "Colony ship deorbited and crashed on the surface but you left colonists and cargo on board!";
47+
break;
4248
}
4349
}
4450

appOPHD/UI/MajorEventAnnouncement.h

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ class MajorEventAnnouncement : public Window
1212
{
1313
ColonyShipCrash,
1414
ColonyShipCrashWithColonists,
15+
ColonyShipCrashWithCargo,
16+
ColonyShipCrashWithColonistsAndCargo,
1517
};
1618

1719
MajorEventAnnouncement();

0 commit comments

Comments
 (0)