This commit is contained in:
mark 2008-05-29 03:57:42 +00:00
parent e41632fe95
commit 9c5abc3b0d
48 changed files with 261 additions and 70 deletions

View file

@ -4,7 +4,7 @@ using Server.Network;
namespace Server.Items
{
public abstract class BaseGranite : Item, ICommodity
public abstract class BaseGranite : Item
{
private CraftResource m_Resource;
@ -14,14 +14,6 @@ namespace Server.Items
get{ return m_Resource; }
set{ m_Resource = value; InvalidateProperties(); }
}
string ICommodity.Description
{
get
{
return String.Format( "{0} {1} high quality granite", Amount, CraftResources.GetName( m_Resource ).ToLower() );
}
}
public override void Serialize( GenericWriter writer )
{