Modernization Fixes & Updates to Default Values (#3)

This commit is contained in:
Kamron Batman 2018-10-28 00:33:16 -07:00 • committed by GitHub
parent 445eddff68
commit dcf64091b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
768 changed files with 10507 additions and 14196 deletions

View file

@ -69,11 +69,11 @@ namespace Server.Spells.Third
}
else
{
//double total = Caster.Skills[SkillName.Magery].Value + Caster.Skills[SkillName.Poisoning].Value;
//double total = Caster.Skills.Magery.Value + Caster.Skills.Poisoning.Value;
#region Dueling
double total = Caster.Skills[SkillName.Magery].Value;
double total = Caster.Skills.Magery.Value;
if (Caster is PlayerMobile pm)
{
@ -83,12 +83,12 @@ namespace Server.Spells.Third
}
else
{
total += pm.Skills[SkillName.Poisoning].Value;
total += pm.Skills.Poisoning.Value;
}
}
else
{
total += Caster.Skills[SkillName.Poisoning].Value;
total += Caster.Skills.Poisoning.Value;
}
#endregion

View file

@ -79,7 +79,7 @@ namespace Server.Spells.Third
{
Caster.SendLocalizedMessage(502831); // Cannot teleport to that spot.
}
else if (Region.Find(to, map).GetRegion(typeof(HouseRegion)) != null)
else if (Region.Find(to, map).IsPartOf<HouseRegion>())
{
Caster.SendLocalizedMessage(502829); // Cannot teleport to that spot.
}

View file

@ -76,7 +76,7 @@ namespace Server.Spells.Third
}
else
{
int level = (int)(from.Skills[SkillName.Magery].Value * 0.8) - 4;
int level = (int)(from.Skills.Magery.Value * 0.8) - 4;
if (level >= cont.RequiredSkill &&
!(cont is TreasureMapChest chest && chest.Level > 2))