From d1958569a3ad71c3b2a45aae3dbd98cefadc0189 Mon Sep 17 00:00:00 2001 From: eos Date: Sun, 16 Sep 2012 00:30:27 +0000 Subject: [PATCH] Corrected the thieves guild membership requirement to steal from other players. --- Scripts/Skills/Stealing.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/Skills/Stealing.cs b/Scripts/Skills/Stealing.cs index d1ca33991..fdcf86abd 100644 --- a/Scripts/Skills/Stealing.cs +++ b/Scripts/Skills/Stealing.cs @@ -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. }