[Quest API] Add IsFindable() and IsTrackable() to Perl/Lua (#2996)

# Perl
- Add `$mob->IsFindable()`.
- Add `$mob->IsTrackable()`.

# Lua
- Add `mob:IsFindable()`.
- Add `mob:IsTrackable()`.

# Notes
- Allows operators to see if a mob is findable or trackable.
This commit is contained in:
Alex King
2023-02-28 21:26:11 -05:00
committed by GitHub
parent 9a5bf53e11
commit 5702f7bcd1
3 changed files with 27 additions and 0 deletions
+2
View File
@@ -513,6 +513,8 @@ public:
void CopyHateList(Lua_Mob to);
bool IsAttackAllowed(Lua_Mob target);
bool IsAttackAllowed(Lua_Mob target, bool is_spell_attack);
bool IsFindable();
bool IsTrackable();
float GetDefaultRaceSize();
};