From 42dde85dd7b7391cbd2b89fb70737f998131ff62 Mon Sep 17 00:00:00 2001 From: Sara Date: Fri, 14 Mar 2025 14:22:31 +0100 Subject: [PATCH] feat: upgraded debug print to warning --- src/rts_actions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rts_actions.cpp b/src/rts_actions.cpp index 58ec5e2..b348686 100644 --- a/src/rts_actions.cpp +++ b/src/rts_actions.cpp @@ -98,7 +98,7 @@ bool TakeCover::procedural_is_possible(goap::ActorWorldState *context) const { for(NavMarker *marker : room->get_markers()) if(TakeCover::is_marker_cover_from(marker, target_position, context_position)) return true; - gd::UtilityFunctions::print("!!! no cover marker found for ", context->get_path()); + gd::UtilityFunctions::push_warning("no cover marker found for ", context->get_path()); return false; }