diff options
Diffstat (limited to 'src/world.cpp')
-rw-r--r-- | src/world.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/world.cpp b/src/world.cpp index 72287be..1498016 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -163,7 +163,7 @@ void World::singleDetect(Entity *e){ e->ground=true; e->loc.y=line[i].y-.001*deltaTime; if(e->type==STRUCTURET){ - std::cout<<e->loc.x<<" "<<e->loc.y<<std::endl; + //std::cout<<e->loc.x<<" "<<e->loc.y<<std::endl; return; } }else if(e->loc.y>line[i].y-.002*deltaTime){ // Snap the player to the top of that line if the player is inside it |