From 3d96e569c853a4f985ca6ca5fd06f9654e9e0dd9 Mon Sep 17 00:00:00 2001 From: Yggdrasil75 Date: Wed, 4 Mar 2026 14:36:31 -0500 Subject: [PATCH] I fixed this so removing. --- util/sim/planet.hpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/util/sim/planet.hpp b/util/sim/planet.hpp index e6cc7f5..3858a53 100644 --- a/util/sim/planet.hpp +++ b/util/sim/planet.hpp @@ -797,12 +797,6 @@ public: std::cout << "Star Radius: " << starRadius << " units" << std::endl; std::cout << "Orbit Distance: " << orbitDistance << " units" << std::endl; - if (orbitDistance > config.gridSizeCube) { - std::cout << "[WARNING] Star distance (" << orbitDistance - << ") exceeds octree bounds (" << config.gridSizeCube - << "). Please increase gridSizeCube or the star will be outside the grid!" << std::endl; - } - v3 starCenter = config.center + v3(orbitDistance, 0.0f, 0.0f); v3 starColor = v3(1.0f, 0.95f, 0.8f);