Skip to content

Commit

Permalink
+ fix "cannot find rank for" bug (restrictions.cpp)
Browse files Browse the repository at this point in the history
+ fixed invalid (had extra space) name of exported script function speed in alife_monster_detail_path_manager_script.cpp
  • Loading branch information
avoitishin committed Dec 16, 2014
1 parent bdf5373 commit 00e48d5
Show file tree
Hide file tree
Showing 2 changed files with 177 additions and 176 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 @@ void CALifeMonsterDetailPathManager::script_register (lua_State *L)
.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
Loading

0 comments on commit 00e48d5

Please sign in to comment.