oops
This commit is contained in:
parent
1720ae3a6c
commit
cec4e0e9fa
2 changed files with 4 additions and 4 deletions
|
|
@ -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()
|
||||
|
|
|
|||
|
|
@ -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 )
|
||||
{
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue