mirror of
https://github.com/ServUO/ServUO
synced 2026-08-11 20:23:04 -04:00
- Account vaults have been added. - Added in new aquariums. - All missing recipes have been added. Bug Fixes - Fixes an exploit with mail boxes. - Auction Safes now work correctly in regards to bid / match bid. - Cleanup Co-authored-by: TrueUO <knight.daniel.r@gmail.com>
41 lines
No EOL
910 B
C#
41 lines
No EOL
910 B
C#
using Server.Engines.Craft;
|
|
|
|
namespace Server.Items
|
|
{
|
|
[Flipable(0x1030, 0x1031)]
|
|
public class JointingPlane : BaseTool
|
|
{
|
|
public override CraftSystem CraftSystem => DefCarpentry.CraftSystem;
|
|
|
|
[Constructable]
|
|
public JointingPlane()
|
|
: base(0x1030)
|
|
{
|
|
Weight = 2.0;
|
|
}
|
|
|
|
[Constructable]
|
|
public JointingPlane(int uses)
|
|
: base(uses, 0x1030)
|
|
{
|
|
Weight = 2.0;
|
|
}
|
|
|
|
public JointingPlane(Serial serial)
|
|
: base(serial)
|
|
{
|
|
}
|
|
|
|
public override void Serialize(GenericWriter writer)
|
|
{
|
|
base.Serialize(writer);
|
|
writer.Write(0); // version
|
|
}
|
|
|
|
public override void Deserialize(GenericReader reader)
|
|
{
|
|
base.Deserialize(reader);
|
|
int version = reader.ReadInt();
|
|
}
|
|
}
|
|
} |