Mostly cleanup...
Removed canbeharmful check on reveal spell BallOfSummoning required to be in pack Cleaned up ban duration gump
This commit is contained in:
parent
521e728edd
commit
4718a4b911
12 changed files with 30 additions and 40 deletions
|
|
@ -21,9 +21,8 @@ namespace Server.Items
|
|||
protected override Packet GetWorldPacketFor( NetState state ) {
|
||||
Mobile mob = state.Mobile;
|
||||
|
||||
if ( mob != null && mob.AccessLevel >= AccessLevel.GameMaster ) {
|
||||
if ( mob != null && mob.AccessLevel >= AccessLevel.GameMaster )
|
||||
return new GMItemPacket( this );
|
||||
}
|
||||
|
||||
return base.GetWorldPacketFor( state );
|
||||
}
|
||||
|
|
|
|||
|
|
@ -146,20 +146,6 @@ namespace Server.Items
|
|||
|
||||
m_NoBones = true;
|
||||
BeginDecay( m_BoneDecayTime );
|
||||
|
||||
/*DecayedCorpse c = new DecayedCorpse( Name );
|
||||
|
||||
c.MoveToWorld( Location, Map );
|
||||
|
||||
ArrayList list = Items;
|
||||
|
||||
for ( int i = list.Count - 1; i >= 0; --i )
|
||||
{
|
||||
if ( i < list.Count )
|
||||
c.AddItem( (Item)list[i] );
|
||||
}
|
||||
|
||||
Delete();*/
|
||||
}
|
||||
|
||||
private static TimeSpan m_DefaultDecayTime = TimeSpan.FromMinutes( 7.0 );
|
||||
|
|
|
|||
|
|
@ -27,8 +27,6 @@ namespace Server.Items
|
|||
Amount = amount;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public bool Dye( Mobile from, DyeTub sender )
|
||||
{
|
||||
if ( Deleted )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue