Skip to content

Commit

Permalink
engine: Fix compile-time error in coordinator.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
cassava committed Nov 17, 2023
1 parent 2917cfd commit 9230ca1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/src/coordinator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ cloe::CallbackResult Coordinator::execute_trigger(TriggerPtr&& t, const Sync& sy
void Coordinator::execute_action_from_lua(const Sync& sync, const sol::object& obj) {
// TODO: Make this trackable by making it a proper trigger and using execute trigger
// instead of calling the action here directly.
auto ap = make_action(Json(obj));
auto ap = make_action(obj);
(*ap)(sync, *executer_registrar_);
}

Expand Down

0 comments on commit 9230ca1

Please sign in to comment.