Replaces types with built-in types.
This commit is contained in:
parent
fee83ce560
commit
22ab83ea9e
98 changed files with 248 additions and 248 deletions
|
|
@ -338,7 +338,7 @@ namespace Server
|
|||
|
||||
public static Map Parse(string value)
|
||||
{
|
||||
if (String.IsNullOrWhiteSpace(value))
|
||||
if (string.IsNullOrWhiteSpace(value))
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
|
@ -348,7 +348,7 @@ namespace Server
|
|||
return Internal;
|
||||
}
|
||||
|
||||
if (!Int32.TryParse(value, out int index))
|
||||
if (!int.TryParse(value, out int index))
|
||||
{
|
||||
return m_Maps.FirstOrDefault(m => m != null && Insensitive.Equals(m.Name, value));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue