- Fixed HelpInfo not displaying the availability of the Global modifier.

- The Most Knowledge Person, The Robe Of Britannia "Ari" and Embroidered Oak Leaf Cloak can now be repaired.
- Added TimeoutTeleporter.
- Fixed weapon attributes on elven glasses not being counted.
- Added Labyrinth to the ML regions list.
- Fixed a bug in Ilhenir's StainedOoze causing the effect to never stop.
- StainedOoze will now only damage equipment until the equipment's hitpoints reaches single digits.
- Added an overhead message to the corrosive effect of StainedOoze.
- Remaining StainedOoze will now decay properly after a server reboot.
- General rewriting of the StainedOoze code.
- Fixed Changeling sounds.
- Fixed Irk, Guile and Spite morphing back into a paragon hue.
- Changeling cloned items are now deleted upon the Changeling's deletion, instead of being cleaned up at a server boot.
- Fixed talisman protection property.
This commit is contained in:
eos 2012-03-18 03:29:21 +00:00
parent 06975930b9
commit 9023acf7b4
9 changed files with 289 additions and 170 deletions

View file

@ -105,8 +105,11 @@ namespace Server.Engines.Craft
if ( m_CraftSystem is DefTailoring )
{
return (clothing is BearMask)
|| (clothing is DeerMask);
return ( clothing is BearMask )
|| ( clothing is DeerMask )
|| ( clothing is TheMostKnowledgePerson )
|| ( clothing is TheRobeOfBritanniaAri )
|| ( clothing is EmbroideredOakLeafCloak );
}
return false;