Skip to content

Commit 00e48d5

Browse files
committed
+ fix "cannot find rank for" bug (restrictions.cpp)
+ fixed invalid (had extra space) name of exported script function speed in alife_monster_detail_path_manager_script.cpp
1 parent bdf5373 commit 00e48d5

File tree

2 files changed

+177
-176
lines changed

2 files changed

+177
-176
lines changed

src/xrGame/alife_monster_detail_path_manager_script.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ void CALifeMonsterDetailPathManager::script_register (lua_State *L)
2121
.def("target", (void (CALifeMonsterDetailPathManager::*)(const GameGraph::_GRAPH_ID &, const u32 &, const Fvector &))(&CALifeMonsterDetailPathManager::target))
2222
.def("target", (void (CALifeMonsterDetailPathManager::*)(const GameGraph::_GRAPH_ID &))(&CALifeMonsterDetailPathManager::target))
2323
.def("target", (void (CALifeMonsterDetailPathManager::*)(const CALifeSmartTerrainTask *))(&CALifeMonsterDetailPathManager::target))
24-
.def("speed ", (void (CALifeMonsterDetailPathManager::*)(const float &))(&CALifeMonsterDetailPathManager::speed))
25-
.def("speed ", (const float &(CALifeMonsterDetailPathManager::*)() const)(&CALifeMonsterDetailPathManager::speed))
24+
.def("speed", (void (CALifeMonsterDetailPathManager::*)(const float &))(&CALifeMonsterDetailPathManager::speed))
25+
.def("speed", (const float &(CALifeMonsterDetailPathManager::*)() const)(&CALifeMonsterDetailPathManager::speed))
2626
.def("completed", &CALifeMonsterDetailPathManager::completed)
2727
.def("actual", &CALifeMonsterDetailPathManager::actual)
2828
.def("failed", &CALifeMonsterDetailPathManager::failed)

0 commit comments

Comments
 (0)