Skip to content

Commit

Permalink
Removed "alife():object()" duplicate
Browse files Browse the repository at this point in the history
This partially reverts commit 3f6ee30.
  • Loading branch information
Xottab-DUTY committed Sep 27, 2019
1 parent 92a8f70 commit 4c56d79
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/xrGame/alife_simulator_script.cpp
Expand Up @@ -333,10 +333,9 @@ SCRIPT_EXPORT(CALifeSimulator, (),
.def("level_name", &get_level_name)
.def("object",
(CSE_ALifeDynamicObject * (*)(const CALifeSimulator*, ALife::_OBJECT_ID))(alife_object))
.def("object", (CSE_ALifeDynamicObject*(*)(const CALifeSimulator*, pcstr))(alife_object))
.def("object", (CSE_ALifeDynamicObject * (*)(const CALifeSimulator*, ALife::_OBJECT_ID, bool))(
alife_object))
.def("object", (CSE_ALifeDynamicObject *(*) (const CALifeSimulator*, LPCSTR))(alife_object))
.def("object", (CSE_ALifeDynamicObject *(*) (const CALifeSimulator*, pcstr))(alife_object))
.def("story_object", (CSE_ALifeDynamicObject * (*)(const CALifeSimulator*, ALife::_STORY_ID))(
alife_story_object))
.def("set_switch_online",
Expand Down

0 comments on commit 4c56d79

Please sign in to comment.