28 lines
723 B
C#
28 lines
723 B
C#
using Barotrauma.Networking;
|
|
|
|
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;
|
|
}
|
|
}
|