diff --git a/desktop_version/src/Entity.cpp b/desktop_version/src/Entity.cpp index 4b000e75..b0979ede 100644 --- a/desktop_version/src/Entity.cpp +++ b/desktop_version/src/Entity.cpp @@ -4388,6 +4388,7 @@ void entityclass::updateentitylogic( int t ) { if (t < 0 || t >= (int) entities.size()) { + puts("updateentitylogic() out-of-bounds!"); return; } @@ -4430,6 +4431,7 @@ void entityclass::entitymapcollision( int t ) { if (t < 0 || t >= (int) entities.size()) { + puts("entitymapcollision() out-of-bounds!"); return; }