26 lines
697 B
C#
26 lines
697 B
C#
namespace Barotrauma
|
|
{
|
|
partial class CombatMission : Mission
|
|
{
|
|
public override LocalizedString Description
|
|
{
|
|
get
|
|
{
|
|
if (descriptions == null) { return ""; }
|
|
|
|
if (GameMain.Client?.Character == null)
|
|
{
|
|
//non-team-specific description
|
|
return descriptions[0];
|
|
}
|
|
|
|
//team specific
|
|
return descriptions[GameMain.Client.Character.TeamID == CharacterTeamType.Team1 ? 1 : 2];
|
|
}
|
|
}
|
|
|
|
public override bool DisplayAsCompleted => false;
|
|
public override bool DisplayAsFailed => false;
|
|
}
|
|
}
|