This commit is contained in:
mark 2012-11-10 20:06:36 +00:00
parent 8ff1a903a0
commit 14873aaa3e
78 changed files with 360 additions and 231 deletions

View file

@ -685,7 +685,10 @@ namespace Server.Items
from.LocalOverheadMessage( MessageType.Regular, 0x3B2, 503019 ); // You successfully decode a treasure map!
Decoder = from;
LootType = LootType.Blessed;
if ( Core.AOS )
LootType = LootType.Blessed;
DisplayTo( from );
}
@ -887,10 +890,9 @@ namespace Server.Items
break;
}
}
if (m_Decoder != null && LootType == LootType.Regular)
{
if ( Core.AOS && m_Decoder != null && LootType == LootType.Regular)
LootType = LootType.Blessed;
}
}
}