diff --git a/exec/showmsgavatar.js b/exec/showmsgavatar.js
index 015a47c817e9a6933735e42180eefee2fc9851ec..dd4094854fa4539fbf8673eb1792b9c8d199a2b1 100644
--- a/exec/showmsgavatar.js
+++ b/exec/showmsgavatar.js
@@ -16,6 +16,7 @@ var   USER_ANSI         =(1<<1);
 // Avatar support here:
 if(!(bbs.msg_attr&MSG_ANONYMOUS) && console.term_supports(USER_ANSI)) {
 	var Avatar = load({}, 'avatar_lib.js');
-	Avatar.draw(bbs.msg_from_ext, bbs.msg_from, bbs.msg_from_net, /* above: */true, /* right-justified: */true);
+	Avatar.draw(bbs.msg_from_ext, bbs.msg_from, bbs.msg_from_net, /* above: */true, /* right-justified: */true
+		,bbs.msghdr_top_of_screen);
 	console.attributes = 7;	// Clear the background attribute as the next line might scroll, filling with BG attribute
 }
\ No newline at end of file