Skullcaps were not getting the correct ML durabilities.

http://www.runuo.com/community/threads/svn-skull-cap-durability.450698/
This commit is contained in:
xavier 2011-01-05 00:43:08 +00:00
parent 02de127080
commit 48db2634a6

View file

@ -337,8 +337,8 @@ namespace Server.Items
public override int BasePoisonResistance{ get{ return 8; } }
public override int BaseEnergyResistance{ get{ return 8; } }
public override int InitMinHits{ get{ return 7; } }
public override int InitMaxHits{ get{ return 12; } }
public override int InitMinHits{ get{ return ( Core.ML ? 14 : 7 ); } }
public override int InitMaxHits{ get{ return ( Core.ML ? 28 : 12 ); } }
[Constructable]
public SkullCap() : this( 0 )