Spelling fixes
This commit is contained in:
committed by
Pavel Penev
parent
52fd564eac
commit
53e9f44972
@@ -43,7 +43,7 @@ namespace OpenRA
|
||||
readonly List<MapDirectoryTracker> mapDirectoryTrackers = new List<MapDirectoryTracker>();
|
||||
|
||||
/// <summary>
|
||||
/// The most recenly modified or loaded map at runtime
|
||||
/// The most recently modified or loaded map at runtime
|
||||
/// </summary>
|
||||
public string LastModifiedMap { get; private set; } = null;
|
||||
readonly Dictionary<string, string> mapUpdates = new Dictionary<string, string>();
|
||||
|
||||
@@ -114,7 +114,7 @@ namespace OpenRA.Scripting
|
||||
{
|
||||
var pi = (PropertyInfo)Member;
|
||||
if (!value.TryGetClrValue(pi.PropertyType, out var clrValue))
|
||||
throw new LuaException($"Unable to convert '{value.WrappedClrType().Name}' to Clr type '{pi.PropertyType}'");
|
||||
throw new LuaException($"Unable to convert '{value.WrappedClrType().Name}' to CLR type '{pi.PropertyType}'");
|
||||
|
||||
pi.SetValue(Target, clrValue, null);
|
||||
}
|
||||
|
||||
@@ -105,7 +105,7 @@ namespace OpenRA
|
||||
[Desc("Delay in milliseconds before newly joined players can send chat messages.")]
|
||||
public int FloodLimitJoinCooldown = 5000;
|
||||
|
||||
[Desc("Amount of miliseconds player chat messages are tracked for.")]
|
||||
[Desc("Amount of milliseconds player chat messages are tracked for.")]
|
||||
public int FloodLimitInterval = 5000;
|
||||
|
||||
[Desc("Amount of chat messages per FloodLimitInterval a players can send before flood is detected.")]
|
||||
|
||||
@@ -25,7 +25,7 @@ namespace OpenRA
|
||||
readonly int x, y, z, w;
|
||||
|
||||
/// <summary>
|
||||
/// Construct a rotation from euler angles.
|
||||
/// Construct a rotation from Euler angles.
|
||||
/// </summary>
|
||||
public WRot(WAngle roll, WAngle pitch, WAngle yaw)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user