Adds assemblies config, fixes crash bugs. (#134)
This commit is contained in:
parent
0140eb73b4
commit
8ec166bcd0
3223 changed files with 191 additions and 191 deletions
|
|
@ -1,32 +0,0 @@
|
|||
namespace Server.Items
|
||||
{
|
||||
public class FriendOfTheLibraryToken : Item
|
||||
{
|
||||
[Constructible]
|
||||
public FriendOfTheLibraryToken() : base(0x2F58)
|
||||
{
|
||||
Layer = Layer.Talisman;
|
||||
Hue = 0x28A;
|
||||
}
|
||||
|
||||
public FriendOfTheLibraryToken(Serial serial) : base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override int LabelNumber => 1073136; // Friend of the Library Token (allows donations to be made)
|
||||
|
||||
public override void Serialize(IGenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
|
||||
writer.Write(0); // Version
|
||||
}
|
||||
|
||||
public override void Deserialize(IGenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue