mirror of
https://github.com/EQEmu/Server.git
synced 2026-01-02 22:03:52 +00:00
[Quest API] Fix Perl SetSimpleRoamBox Overloads (#2961)
# Notes - These overloads were non-functional as they didn't have a method to actually fall back to.
This commit is contained in:
parent
9f42da5bad
commit
1d645aa5f6
@ -584,6 +584,16 @@ bool Perl_NPC_GetCombatState(NPC* self) // @categories Script Utility
|
||||
return self->GetCombatEvent();
|
||||
}
|
||||
|
||||
void Perl_NPC_SetSimpleRoamBox(NPC* self, float box_size) // @categories Script Utility
|
||||
{
|
||||
self->SetSimpleRoamBox(box_size);
|
||||
}
|
||||
|
||||
void Perl_NPC_SetSimpleRoamBox(NPC* self, float box_size, float move_distance) // @categories Script Utility
|
||||
{
|
||||
self->SetSimpleRoamBox(box_size, move_distance);
|
||||
}
|
||||
|
||||
void Perl_NPC_SetSimpleRoamBox(NPC* self, float box_size, float move_distance, int move_delay) // @categories Script Utility
|
||||
{
|
||||
self->SetSimpleRoamBox(box_size, move_distance, move_delay);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user