Fix wrong changes of possessive
This commit is contained in:
@@ -21,7 +21,7 @@ namespace OpenRA.Scripting
|
|||||||
{
|
{
|
||||||
public ActorGlobal(ScriptContext context) : base(context) { }
|
public ActorGlobal(ScriptContext context) : base(context) { }
|
||||||
|
|
||||||
[Desc("Create a new actor. initTable specifies a list of key-value pairs that define initial parameters for the actors traits.")]
|
[Desc("Create a new actor. initTable specifies a list of key-value pairs that define initial parameters for the actor's traits.")]
|
||||||
public Actor Create(string type, bool addToWorld, LuaTable initTable)
|
public Actor Create(string type, bool addToWorld, LuaTable initTable)
|
||||||
{
|
{
|
||||||
var initDict = new TypeDictionary();
|
var initDict = new TypeDictionary();
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ namespace OpenRA.Mods.RA.Scripting
|
|||||||
public PlayerProperties(ScriptContext context, Player player)
|
public PlayerProperties(ScriptContext context, Player player)
|
||||||
: base(context, player) { }
|
: base(context, player) { }
|
||||||
|
|
||||||
[Desc("The players name.")]
|
[Desc("The player's name.")]
|
||||||
public string Name { get { return player.PlayerName; } }
|
public string Name { get { return player.PlayerName; } }
|
||||||
|
|
||||||
[Desc("Returns an array of actors representing all ground attack units of this player.")]
|
[Desc("Returns an array of actors representing all ground attack units of this player.")]
|
||||||
|
|||||||
Reference in New Issue
Block a user