[Bug Fix] Fix ScaleNPC() in Perl (#4196)

# Notes
- We were not passing `override_special_abilities` in the right parameter slot.
- Default `always_scale` to `true` when using the Perl/Lua method.
This commit is contained in:
Alex King
2024-03-23 00:36:30 -04:00
committed by GitHub
parent 16cb7364e8
commit 4bf60a6522
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -758,7 +758,7 @@ void Lua_NPC::SetLDoNTrapDetected(bool is_detected) {
void Lua_NPC::ScaleNPC(uint8 npc_level)
{
Lua_Safe_Call_Void();
self->ScaleNPC(npc_level);
self->ScaleNPC(npc_level, true);
}
void Lua_NPC::ScaleNPC(uint8 npc_level, bool override_special_abilities)