--- jta26_patched/de/mud/terminal/vt320.java	2009-05-21 14:26:03.000000000 -0400
+++ jta26_patched2/de/mud/terminal/vt320.java	2009-08-07 13:15:32.000000000 -0400
@@ -2305,12 +2305,16 @@
             /* cursor down n (1) times */
             {
               int limit;
+              /*
               if (R < tm)
                 limit = tm - 1;
               else if (R <= bm) {
                 limit = bm;
               } else
                 limit = rows - 1;
+              */
+              // TIMCO fix merged here on 20090717 by EVL
+              limit = (R > bm ? rows - 1 : bm);
               if (DCEvars[0] == 0)
                 R++;
               else
