aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--socket.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/socket.js b/socket.js
index 524312e..dfd0999 100644
--- a/socket.js
+++ b/socket.js
@@ -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]