From 9230ca1b7c1a322981cd04d9f34aa6f6c50f3b30 Mon Sep 17 00:00:00 2001 From: Benjamin Morgan Date: Fri, 17 Nov 2023 09:25:43 +0100 Subject: [PATCH] engine: Fix compile-time error in coordinator.cpp --- engine/src/coordinator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/src/coordinator.cpp b/engine/src/coordinator.cpp index b9ca9aff0..c3668c5b0 100644 --- a/engine/src/coordinator.cpp +++ b/engine/src/coordinator.cpp @@ -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_); }