This commit is contained in:
parent
8ff1a903a0
commit
14873aaa3e
78 changed files with 360 additions and 231 deletions
|
|
@ -1054,7 +1054,6 @@ namespace Server.Misc
|
|||
|
||||
regs.LootType = LootType.Regular;
|
||||
|
||||
|
||||
EquipItem( new BoneHelm() );
|
||||
|
||||
if ( elf )
|
||||
|
|
@ -1125,7 +1124,7 @@ namespace Server.Misc
|
|||
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
case 6: // Samurai
|
||||
{
|
||||
addSkillItems = false;
|
||||
|
|
@ -1279,7 +1278,7 @@ namespace Server.Misc
|
|||
return item;
|
||||
}
|
||||
|
||||
private static void AddSkillItems( SkillName skill, Mobile m )
|
||||
private static void AddSkillItems( SkillName skill, Mobile m )
|
||||
{
|
||||
bool elf = (m.Race == Race.Elf);
|
||||
|
||||
|
|
@ -1320,14 +1319,12 @@ namespace Server.Misc
|
|||
}
|
||||
else
|
||||
{
|
||||
EquipItem( new Robe( Utility.RandomPinkHue() ) );
|
||||
EquipItem( new Robe( hue ) );
|
||||
}
|
||||
break;
|
||||
}
|
||||
case SkillName.AnimalLore:
|
||||
{
|
||||
|
||||
|
||||
int hue = Utility.RandomBlueHue();
|
||||
|
||||
if ( elf )
|
||||
|
|
@ -1483,7 +1480,7 @@ namespace Server.Misc
|
|||
}
|
||||
else
|
||||
{
|
||||
EquipItem( new FloppyHat( Utility.RandomYellowHue() ) );
|
||||
EquipItem( new FloppyHat( hue ) );
|
||||
}
|
||||
|
||||
break;
|
||||
|
|
|
|||
|
|
@ -97,7 +97,8 @@ namespace Server.Items
|
|||
}
|
||||
}
|
||||
|
||||
Utility.Intern( ref m_Dipper );
|
||||
if ( m_Dipper != null )
|
||||
m_Dipper = String.Intern( m_Dipper );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -61,7 +61,7 @@ namespace Server.Misc
|
|||
{
|
||||
Mobile from = e.Mobile;
|
||||
|
||||
if ( !from.Alive || from.AccessLevel > AccessLevel.Player )
|
||||
if ( !from.Alive || from.AccessLevel > AccessLevel.Player )
|
||||
return;
|
||||
|
||||
if ( !from.Player )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue