Corrected the thieves guild membership requirement to steal from other players.

This commit is contained in:
eos 2012-09-16 00:30:27 +00:00
parent 11f84a33cd
commit d1958569a3

View file

@ -59,7 +59,7 @@ namespace Server.SkillHandlers
{
m_Thief.SendLocalizedMessage( 1005584 ); // Both hands must be free to steal.
}
else if ( root is Mobile && ((Mobile)root).Player && IsInnocentTo( m_Thief, (Mobile)root ) && !IsInGuild( m_Thief ) )
else if ( root is Mobile && ((Mobile)root).Player && !IsInGuild( m_Thief ) )
{
m_Thief.SendLocalizedMessage( 1005596 ); // You must be in the thieves guild to steal from other players.
}