]> git.localhorst.tv Git - blobs.git/blobdiff - src/creature/goal.cpp
avoid others when steering
[blobs.git] / src / creature / goal.cpp
index 9c45a344f22a1fe9b1f55498d8e7caa5d00ec09b..77a0dece1a261b55cdf9318529ea6682d947accf 100644 (file)
@@ -92,8 +92,7 @@ void IdleGoal::Action() {
        double rand = Assets().random.UNorm();
        if (fert > rand) {
                std::cout << "[" << int(GetCreature().GetSimulation().Time())
-                       << "s] splitting " << GetCreature().Name()
-                       << " because " << fert << " > " << rand << std::endl;
+                       << "s] " << GetCreature().Name() << " split" << std::endl;
                Split(GetCreature());
        }
 }