mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 19:37:03 +00:00
[11194] Fix the word shedule -> schedule in function name
Signed-off-by: SilverIce <slifeleaf@gmail.com>
This commit is contained in:
parent
724092d9e5
commit
09c5b49cc4
4 changed files with 7 additions and 7 deletions
|
|
@ -8092,7 +8092,7 @@ void Unit::SetVisibility(UnitVisibility x)
|
|||
|
||||
GetViewPoint().Call_UpdateVisibilityForOwner();
|
||||
UpdateObjectVisibility();
|
||||
SheduleAINotify(0);
|
||||
ScheduleAINotify(0);
|
||||
|
||||
GetViewPoint().Event_ViewPointVisibilityChanged();
|
||||
}
|
||||
|
|
@ -10860,7 +10860,7 @@ private:
|
|||
Unit& m_owner;
|
||||
};
|
||||
|
||||
void Unit::SheduleAINotify(uint32 delay)
|
||||
void Unit::ScheduleAINotify(uint32 delay)
|
||||
{
|
||||
if (!IsAINotifySheduled())
|
||||
m_Events.AddEvent(new RelocationNotifyEvent(*this), m_Events.CalculateTime(delay));
|
||||
|
|
@ -10882,5 +10882,5 @@ void Unit::OnRelocated()
|
|||
GetViewPoint().Call_UpdateVisibilityForOwner();
|
||||
UpdateObjectVisibility();
|
||||
}
|
||||
SheduleAINotify(World::GetRelocationAINotifyDelay());
|
||||
ScheduleAINotify(World::GetRelocationAINotifyDelay());
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue