Use expression body syntax
This commit is contained in:
@@ -17,15 +17,11 @@ namespace OpenRA.Mods.Common.UpdateRules.Rules
|
||||
{
|
||||
public class RemoveTurnToDock : UpdateRule
|
||||
{
|
||||
public override string Name { get { return "TurnToDock is removed from the Aircraft trait."; } }
|
||||
public override string Description
|
||||
{
|
||||
get
|
||||
{
|
||||
return "TurnToDock is removed from the Aircraft trait in favor of letting the Exit trait on the host" +
|
||||
"building determine whether or not turning is required and to what facing the aircraft must turn.";
|
||||
}
|
||||
}
|
||||
public override string Name => "TurnToDock is removed from the Aircraft trait.";
|
||||
|
||||
public override string Description =>
|
||||
"TurnToDock is removed from the Aircraft trait in favor of letting the Exit trait on the host" +
|
||||
"building determine whether or not turning is required and to what facing the aircraft must turn.";
|
||||
|
||||
readonly List<Tuple<string, string>> turningAircraft = new List<Tuple<string, string>>();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user