[11194] Fix the word shedule -> schedule in function name

Signed-off-by: SilverIce <slifeleaf@gmail.com>
This commit is contained in:
kbz 2011-02-22 03:53:29 +02:00
parent 724092d9e5
commit 09c5b49cc4
4 changed files with 7 additions and 7 deletions

View file

@ -207,13 +207,13 @@ void Map::AddNotifier(T* , Cell const& , CellPair const& )
template<>
void Map::AddNotifier(Player* obj, Cell const& cell, CellPair const& cellpair)
{
obj->SheduleAINotify(0);
obj->ScheduleAINotify(0);
}
template<>
void Map::AddNotifier(Creature* obj, Cell const&, CellPair const&)
{
obj->SheduleAINotify(0);
obj->ScheduleAINotify(0);
}
void