This commit is contained in:
xavier 2012-10-23 02:25:04 +00:00
parent 1720ae3a6c
commit cec4e0e9fa
2 changed files with 4 additions and 4 deletions

View file

@ -6,7 +6,7 @@ namespace Server.Items
{
public class RuinedTapestry : Item
{
public override int DefaultName{ get { return "Ruined Tapestry "; } }
public override string DefaultName{ get { return "Ruined Tapestry "; } }
[Constructable]
public RuinedTapestry()

View file

@ -4,17 +4,17 @@ using Server.Misc;
namespace Server.Items
{
public class RuinedTapestry : Lantern
public class PlagueMask : Lantern
{
public override string DefaultName { get { return "Plague Mask"; } }
[Constructable]
public RuinedTapestry()
public PlagueMask()
: base( Utility.RandomBool() ? 0x4A8E : 0x4A8F )
{
}
public RuinedTapestry( Serial serial )
public PlagueMask( Serial serial )
: base( serial )
{
}