Skip to content

Commit de2eda4

Browse files
Remove deprecated function/method calls (#45)
1 parent 84f2e1a commit de2eda4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Solocraft.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ class SolocraftPlayerInstanceHandler : public PlayerScript
533533
}
534534

535535
// If a player is too high level for dungeon don't buff but if in a group will count towards the group offset balancing.
536-
if (player->getLevel() <= dunLevel + SolocraftLevelDiff)
536+
if (player->GetLevel() <= dunLevel + SolocraftLevelDiff)
537537
{
538538

539539
// Get Current members total difficulty offset and if it exceeds the difficulty offset of the dungeon then debuff new group members coming in until all members leave and re-enter. This happens when a player already inside dungeon invite others to the group but the player already has the full difficulty offset.
@@ -628,7 +628,7 @@ class SolocraftPlayerInstanceHandler : public PlayerScript
628628
// Debuffed characters do not get spellpower
629629
if (difficulty > 0)
630630
{
631-
SpellPowerBonus = static_cast<int>((player->getLevel() * SoloCraftSpellMult) * difficulty);
631+
SpellPowerBonus = static_cast<int>((player->GetLevel() * SoloCraftSpellMult) * difficulty);
632632
player->ApplySpellPowerBonus(SpellPowerBonus, true);
633633
}
634634
}

0 commit comments

Comments
 (0)