This commit is contained in:
asayre 2006-08-30 03:24:57 +00:00
parent 4386cbac99
commit 71e80d5949
16 changed files with 63 additions and 103 deletions

View file

@ -429,7 +429,7 @@ namespace Server.Items
[Constructable]
public GrizzledBones( int amount )
: base( 0x318F )
: base( 0x318C )
{
Stackable = true;
Amount = amount;
@ -444,7 +444,7 @@ namespace Server.Items
{
base.Serialize( writer );
writer.Write( (int)0 ); // version
writer.Write( (int)1 ); // version
}
public override void Deserialize( GenericReader reader )
@ -452,6 +452,9 @@ namespace Server.Items
base.Deserialize( reader );
int version = reader.ReadInt();
if( version <= 0 && ItemID == 0x318F )
ItemID = 0x318C;
}
}