Fixes lots more spelling errors (#5)

* Renames constructable to constructible
* Fixes project references.
* Fixes BaseEquippableLight file name
* Replaces payed with paid.
* Fixes various other spelling errors
This commit is contained in:
Kamron Batman 2018-02-20 16:01:41 -08:00 • committed by GitHub
parent ca4e99c179
commit 20ae1b3989
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2195 changed files with 4617 additions and 4617 deletions

View file

@ -31,24 +31,24 @@ namespace Server.Mobiles
set { m_InstantFlag = value; }
}
[Constructable]
[Constructible]
public ProximitySpawner()
{
}
[Constructable]
[Constructible]
public ProximitySpawner( string spawnName )
: base( spawnName )
{
}
[Constructable]
[Constructible]
public ProximitySpawner( int amount, int minDelay, int maxDelay, int team, int homeRange, string spawnName )
: base( amount, minDelay, maxDelay, team, homeRange, spawnName )
{
}
[Constructable]
[Constructible]
public ProximitySpawner( int amount, int minDelay, int maxDelay, int team, int homeRange, string spawnName, int triggerRange, string spawnMessage, bool instantFlag )
: base( amount, minDelay, maxDelay, team, homeRange, spawnName )
{

View file

@ -238,25 +238,25 @@ namespace Server.Mobiles
set { m_Group = value; InvalidateProperties(); }
}
[Constructable]
[Constructible]
public Spawner()
: this(null)
{
}
[Constructable]
[Constructible]
public Spawner( string spawnName )
: this( 1, 5, 10, 0, 4, spawnName)
{
}
[Constructable]
[Constructible]
public Spawner( int amount, int minDelay, int maxDelay, int team, int homeRange, string spawnName )
: this( amount, TimeSpan.FromMinutes( minDelay ), TimeSpan.FromMinutes( maxDelay ), team, homeRange, spawnName )
{
}
[Constructable]
[Constructible]
public Spawner(int amount, TimeSpan minDelay, TimeSpan maxDelay, int team, int homeRange, string spawnName)
: base(0x1f13)
{
@ -573,7 +573,7 @@ namespace Server.Mobiles
{
ConstructorInfo ctor = ctors[i];
if ( !Add.IsConstructable( ctor, AccessLevel.GameMaster ) )
if ( !Add.IsConstructible( ctor, AccessLevel.GameMaster ) )
continue;
ParameterInfo[] paramList = ctor.GetParameters();