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 };