- Corrected typo in CoM faction signup stone location.

- Removed duplicate code for talisman killer bonuses. (It's handled in BaseWeapon.OnHit)
- Changed Mobile.Account visibility to GM+ (to match ClientGump).
- Removed staff logout delay.
This commit is contained in:
eos@runuo.com 2013-06-07 01:04:35 +00:00
parent 192e87dafa
commit 2067f181e1
5 changed files with 4 additions and 18 deletions

View file

@ -136,7 +136,7 @@ namespace Server.Items
public int DamageBonus( Mobile to )
{
if ( to != null && to.GetType() == m_Type )
if ( to != null && to.GetType() == m_Type ) // Verified: only works on the exact type
return m_Amount;
return 0;