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

@ -13,7 +13,7 @@ namespace Server.Items
get { return "a barkeep contract"; }
}
[Constructable]
[Constructible]
public BarkeepContract() : base( 0x14F0 )
{
Weight = 1.0;

View file

@ -68,7 +68,7 @@ namespace Server.Items
get { return "a clothing bless deed"; }
}
[Constructable]
[Constructible]
public ClothingBlessDeed() : base( 0x14F0 )
{
Weight = 1.0;

View file

@ -81,7 +81,7 @@ namespace Server.Items
LootType = LootType.Blessed;
}
[Constructable]
[Constructible]
public CommodityDeed() : this( null )
{
}

View file

@ -12,7 +12,7 @@ namespace Server.Items
{
public override int LabelNumber{ get{ return 1041061; } } // a coupon for a free hair restyling
[Constructable]
[Constructible]
public HairRestylingDeed() : base( 0x14F0 )
{
Weight = 1.0;

View file

@ -12,7 +12,7 @@ namespace Server.Items
{
public override int LabelNumber{ get{ return 1041116; } } // a deed for a holiday tree
[Constructable]
[Constructible]
public HolidayTreeDeed() : base( 0x14F0 )
{
Hue = 0x488;

View file

@ -13,7 +13,7 @@ namespace Server.Items
get { return "a name change deed"; }
}
[Constructable]
[Constructible]
public NameChangeDeed() : base( 0x14F0 )
{
LootType = LootType.Blessed;

View file

@ -20,7 +20,7 @@ namespace Server.Items
public override int LabelNumber{ get{ return 1062094; } } // a young player ticket
[Constructable]
[Constructible]
public NewPlayerTicket() : base( 0x14EF )
{
Weight = 1.0;

View file

@ -68,7 +68,7 @@ namespace Server.Items
}
}
[Constructable]
[Constructible]
public VendorRentalContract() : base( 0x14F0 )
{
Weight = 1.0;
@ -178,7 +178,7 @@ namespace Server.Items
}
else if ( !house.CanPlaceNewVendor() )
{
from.SendLocalizedMessage( 1062352 ); // You do not have enought storage available to place this contract.
from.SendLocalizedMessage( 1062352 ); // You do not have enough storage available to place this contract.
}
else
{
@ -365,4 +365,4 @@ namespace Server.Items
m_LandlordRenew = reader.ReadBool();
}
}
}
}