]> git.jsancho.org Git - lugaru.git/commitdiff
Removed forgotten debug output
authorCôme Chilliet <come@chilliet.eu>
Thu, 15 Dec 2016 11:08:21 +0000 (18:08 +0700)
committerCôme Chilliet <come@chilliet.eu>
Thu, 15 Dec 2016 11:08:21 +0000 (18:08 +0700)
Source/Objects/Object.cpp

index 3a49c9c43e16d821a70dda19aa4e13d3434fa1a3..3e1e100eaffb5b7d30942ec6dfa18d58a1f2eb8f 100644 (file)
@@ -788,7 +788,6 @@ void Object::MakeObject(int atype, XYZ where, float ayaw, float apitch, float as
 {
     if ((atype != treeleavestype && atype != bushtype) || foliage == 1) {
         unsigned nextid = objects.size();
-        cout << "Adding object " << nextid << endl;
         objects.emplace_back(new Object(atype, where, ayaw, apitch, ascale));
         objects.back()->addToTerrain(nextid);
     }