revert crafting updates of SVN538. Per Mark: changing baseclasses is a bad idea.
This commit is contained in:
parent
7399519cf7
commit
e86794c4e6
130 changed files with 1007 additions and 4906 deletions
|
|
@ -4,12 +4,12 @@ namespace Server.Items
|
|||
{
|
||||
[Furniture]
|
||||
[Flipable( 0xB2D, 0xB2C )]
|
||||
public class WoodenBench : BaseCraftableItem
|
||||
public class WoodenBench : Item
|
||||
{
|
||||
[Constructable]
|
||||
public WoodenBench() : base( 0xB2C )
|
||||
public WoodenBench() : base( 0xB2D )
|
||||
{
|
||||
Weight = 1;
|
||||
Weight = 6;
|
||||
}
|
||||
|
||||
public WoodenBench(Serial serial) : base(serial)
|
||||
|
|
@ -27,10 +27,7 @@ namespace Server.Items
|
|||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = ( InheritsItem ? OldVersion : reader.ReadInt() ); //Required for BaseCraftableItem insertion
|
||||
|
||||
if ( Weight == 6 )
|
||||
Weight = 1;
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue