Skip to content

Commit

Permalink
Fixed invalid name of exported script function (thanks to AVO)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xottab-DUTY committed Nov 21, 2015
1 parent c1e7171 commit 4dc7572
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xrGame/alife_monster_detail_path_manager_script.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ SCRIPT_EXPORT(CALifeMonsterDetailPathManager, (),
.def("target", (void (CALifeMonsterDetailPathManager::*)(const GameGraph::_GRAPH_ID &, const u32 &, const Fvector &))(&CALifeMonsterDetailPathManager::target))
.def("target", (void (CALifeMonsterDetailPathManager::*)(const GameGraph::_GRAPH_ID &))(&CALifeMonsterDetailPathManager::target))
.def("target", (void (CALifeMonsterDetailPathManager::*)(const CALifeSmartTerrainTask *))(&CALifeMonsterDetailPathManager::target))
.def("speed ", (void (CALifeMonsterDetailPathManager::*)(const float &))(&CALifeMonsterDetailPathManager::speed))
.def("speed ", (const float &(CALifeMonsterDetailPathManager::*)() const)(&CALifeMonsterDetailPathManager::speed))
.def("speed", (void (CALifeMonsterDetailPathManager::*)(const float &))(&CALifeMonsterDetailPathManager::speed))
.def("speed", (const float &(CALifeMonsterDetailPathManager::*)() const)(&CALifeMonsterDetailPathManager::speed))
.def("completed", &CALifeMonsterDetailPathManager::completed)
.def("actual", &CALifeMonsterDetailPathManager::actual)
.def("failed", &CALifeMonsterDetailPathManager::failed)
Expand Down

0 comments on commit 4dc7572

Please sign in to comment.