Eos.
arcane circle correction insured/blessed items auto-equip when looting self creepy portrait corrected. issue blocking talisman summoning fixed. horde minions drop loot at server up.
This commit is contained in:
parent
da56ceccbb
commit
af17f4bcbd
8 changed files with 242 additions and 92 deletions
|
|
@ -72,14 +72,14 @@ namespace Server
|
|||
{
|
||||
LootPackEntry entry = m_Entries[i];
|
||||
|
||||
bool shouldAdd = ( entry.Chance > Utility.Random( 10000 ) );
|
||||
bool shouldAdd = true; // ( entry.Chance > Utility.Random( 10000 ) );
|
||||
|
||||
if ( !shouldAdd && checkLuck )
|
||||
{
|
||||
checkLuck = false;
|
||||
|
||||
if ( LootPack.CheckLuck( luckChance ) )
|
||||
shouldAdd = ( entry.Chance > Utility.Random( 10000 ) );
|
||||
if( LootPack.CheckLuck( luckChance ) )
|
||||
shouldAdd = true; // ( entry.Chance > Utility.Random( 10000 ) );
|
||||
}
|
||||
|
||||
if ( !shouldAdd )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue