Page 1 of 1
create_entity parameter for "built by bots"
Posted: Wed Apr 04, 2018 4:17 am
by sparr
I want to be able to create_entity and trigger other mods' on_robot_built_entity instead of on_built_entity.
Re: create_entity parameter for "built by bots"
Posted: Wed Apr 04, 2018 7:24 am
by betrok
Can not you just
raise event on your own?
Re: create_entity parameter for "built by bots"
Posted: Wed Apr 04, 2018 11:07 pm
by sparr
I could do my own raise_event for on_robot_built_entity, but I don't think I can prevent the on_built_entity from firing, and I definitely don't want other mods that watch both of those to think two entities were built.
Re: create_entity parameter for "built by bots"
Posted: Thu Apr 05, 2018 1:45 am
by betrok
sparr wrote:I don't think I can prevent the on_built_entity from firing
There will be no events unless you will raise them.
Re: create_entity parameter for "built by bots"
Posted: Thu Apr 05, 2018 5:54 am
by sparr
Oh, well, I feel dumb now.