X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/add_free?a=blobdiff_plain;f=rogue_chat_nocanvas_monochrome.html;h=085c8a298646b4c9fbfc4cdee330b6c170896c86;hb=b77d7b68103aa6c0d5787c4cb1d1d7b1874d9000;hp=28d3773b0898b2866cb9c9a7a5a34f1d7e5f730c;hpb=da3b93d7a4bd66aef5860bb5a7099e89ab18024c;p=plomrogue2 diff --git a/rogue_chat_nocanvas_monochrome.html b/rogue_chat_nocanvas_monochrome.html index 28d3773..085c8a2 100644 --- a/rogue_chat_nocanvas_monochrome.html +++ b/rogue_chat_nocanvas_monochrome.html @@ -709,13 +709,13 @@ let explorer = { if (msg.length == 0) { msg = " "; // triggers annotation deletion } - server.send(["ANNOTATE", tui.password, unparser.to_yx(explorer.position), msg]); + server.send(["ANNOTATE", unparser.to_yx(explorer.position), msg, tui.password]); }, set_portal: function(msg) { if (msg.length == 0) { msg = " "; // triggers portal deletion } - server.send(["PORTAL", tui.password, unparser.to_yx(explorer.position), msg]); + server.send(["PORTAL", unparser.to_yx(explorer.position), msg, tui.password]); } }