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>
31 lines
No EOL
678 B
C#
31 lines
No EOL
678 B
C#
namespace Server.Items
|
|
{
|
|
[Furniture]
|
|
[Flipable(0xB4A, 0xB49, 0xB4B, 0xB4C)]
|
|
public class WritingTable : CraftableFurniture
|
|
{
|
|
[Constructable]
|
|
public WritingTable()
|
|
: base(0xB4A)
|
|
{
|
|
Weight = 1.0;
|
|
}
|
|
|
|
public WritingTable(Serial serial)
|
|
: base(serial)
|
|
{
|
|
}
|
|
|
|
public override void Serialize(GenericWriter writer)
|
|
{
|
|
base.Serialize(writer);
|
|
writer.Write(0);
|
|
}
|
|
|
|
public override void Deserialize(GenericReader reader)
|
|
{
|
|
base.Deserialize(reader);
|
|
int version = reader.ReadInt();
|
|
}
|
|
}
|
|
} |