ModernUO/Scripts/Items/Lights/BrazierTall.cs
Kamron Batman 20ae1b3989
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
2018-02-20 16:01:41 -08:00

36 lines
No EOL
719 B
C#

using System;
using Server;
namespace Server.Items
{
public class BrazierTall : BaseLight
{
public override int LitItemID{ get { return 0x19AA; } }
[Constructible]
public BrazierTall() : base( 0x19AA )
{
Movable = false;
Duration = TimeSpan.Zero; // Never burnt out
Burning = true;
Light = LightType.Circle300;
Weight = 25.0;
}
public BrazierTall( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer )
{
base.Serialize( writer );
writer.Write( (int) 0 );
}
public override void Deserialize( GenericReader reader )
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
}