From b6a84c4f73c8cb5ecf00d5950ec35f0e9b2ce6d0 Mon Sep 17 00:00:00 2001 From: Sara Date: Thu, 23 Apr 2026 23:29:19 +0200 Subject: [PATCH] chore: removed cluttering logs --- modules/terrain/terrain_modifier_path.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/modules/terrain/terrain_modifier_path.cpp b/modules/terrain/terrain_modifier_path.cpp index e3e87ddf..7d5129d8 100644 --- a/modules/terrain/terrain_modifier_path.cpp +++ b/modules/terrain/terrain_modifier_path.cpp @@ -92,19 +92,15 @@ void TerrainModifierPath::_notification(int what) { float TerrainModifierPath::evaluate_at(Vector2 world_coordinate, float before) { SharedMutex::LockShared shared{ this->lock }; if (this->path == nullptr) { - print_error("no path"); return before; } if (this->curve_left_buffer.is_null()) { - print_error("no curves"); return before; } if (this->path_buffer.is_null()) { - print_error("no path buffer"); return before; } if (this->path_buffer->get_point_count() <= 1) { - print_error("path buffer functionally empty"); return before; } Ref right_curve{ this->curve_right_buffer };