mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
[Bug Fix] Resolve Warning due to Virtual Mob Method GetInv() (#2650)
This commit is contained in:
parent
f12090d109
commit
083d44d4fe
@ -1594,7 +1594,7 @@ protected:
|
|||||||
#endif
|
#endif
|
||||||
int GetBaseSkillDamage(EQ::skills::SkillType skill, Mob *target = nullptr);
|
int GetBaseSkillDamage(EQ::skills::SkillType skill, Mob *target = nullptr);
|
||||||
int64 GetFocusEffect(focusType type, uint16 spell_id, Mob *caster = nullptr, bool from_buff_tic = false);
|
int64 GetFocusEffect(focusType type, uint16 spell_id, Mob *caster = nullptr, bool from_buff_tic = false);
|
||||||
virtual const EQ::InventoryProfile& GetInv() { return EQ::InventoryProfile(); }
|
virtual EQ::InventoryProfile& GetInv() { return m_inv; }
|
||||||
void CalculateNewFearpoint();
|
void CalculateNewFearpoint();
|
||||||
float FindGroundZ(float new_x, float new_y, float z_offset=0.0);
|
float FindGroundZ(float new_x, float new_y, float z_offset=0.0);
|
||||||
float FindDestGroundZ(glm::vec3 dest, float z_offset=0.0);
|
float FindDestGroundZ(glm::vec3 dest, float z_offset=0.0);
|
||||||
@ -1863,7 +1863,7 @@ protected:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
Mob* target;
|
Mob* target;
|
||||||
|
EQ::InventoryProfile m_inv;
|
||||||
|
|
||||||
#ifdef BOTS
|
#ifdef BOTS
|
||||||
std::shared_ptr<HealRotation> m_target_of_heal_rotation;
|
std::shared_ptr<HealRotation> m_target_of_heal_rotation;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user