diff options
-rw-r--r-- | socket.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -60,7 +60,7 @@ class Socket extends retryws { this.write = function(chars){ //chars is an list of pairs [ pixel coordinate (y/x < 16), char ] if (chars.length > 200){ - throw "Too many characters to write"; + throw "Too many characters to write by server decree"; } for (var i=0; i<chars.length; i++){ let char = chars[i] |