From: Christian Heller Date: Sun, 13 Dec 2020 06:10:42 +0000 (+0100) Subject: In web client, fix broken installation button. X-Git-Url: https://plomlompom.com/repos/?a=commitdiff_plain;h=9f80260dd126a305f4b71541f00dcc88264ce716;p=plomrogue2 In web client, fix broken installation button. --- diff --git a/rogue_chat.html b/rogue_chat.html index 3536d15..5003854 100644 --- a/rogue_chat.html +++ b/rogue_chat.html @@ -1784,7 +1784,7 @@ document.getElementById("consume").onclick = function() { server.send(['TASK:INTOXICATE']); }; document.getElementById("install").onclick = function() { - server.send(['TASK:INSTALL']); + server.send(['TASK:INSTALL', tui.password]); }; document.getElementById("wear").onclick = function() { server.send(['TASK:WEAR']);