Mercurial > web-gnusto
changeset 42:768813231e54
Fixed another console display bug. The troll 'info' command now seems to work without any major visual bugs.
author | Atul Varma <varmaa@toolness.com> |
---|---|
date | Thu, 15 May 2008 03:05:32 -0700 |
parents | ee7175b1f6be |
children | e45b81cdb4d0 |
files | console.js |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/console.js Thu May 15 03:00:18 2008 -0700 +++ b/console.js Thu May 15 03:05:32 2008 -0700 @@ -38,12 +38,11 @@ character = string[i].entityify(); if (character != null) { - //console.log("writing out "+character.quote()); this._characters[y][x] = character; x += 1; } } - //this._pos = [x, y]; + this._pos = [x, y]; this.render(); },