diff --git a/server/src/sys/agent/behavior_tree.rs b/server/src/sys/agent/behavior_tree.rs index 84f2994a32..2b4dc59299 100644 --- a/server/src/sys/agent/behavior_tree.rs +++ b/server/src/sys/agent/behavior_tree.rs @@ -139,12 +139,11 @@ impl BehaviorTree { handle_inbox_trade_accepted, handle_inbox_finished_trade, handle_inbox_update_pending_trade, - handle_timed_events, ]); Self { tree } } else { Self { - tree: vec![handle_inbox_cancel_interactions, handle_timed_events], + tree: vec![handle_inbox_cancel_interactions], } } }