[Quest API] Add Hate Entry Methods to Perl (#3459)

# Perl
- Add `$hate_entry->GetFrenzy()`.
- Add `$hate_entry->SetDamage(value)`.
- Add `$hate_entry->SetEnt(mob)`.
- Add `$hate_entry->SetFrenzy(is_frenzy)`.
- Add `$hate_entry->SetHate(value)`.

# Lua
- Convert `hate_entry:GetFrenzy()` to `bool` instead of `int`, as `is_entity_frenzy` is a `bool`.
This commit is contained in:
Alex King
2023-07-02 10:26:37 -04:00
committed by GitHub
parent a13fa07e68
commit e12368f002
3 changed files with 35 additions and 5 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ public:
void SetDamage(int64 value);
int64 GetHate();
void SetHate(int64 value);
int GetFrenzy();
bool GetFrenzy();
void SetFrenzy(bool value);
};