diff options
author | Tor Andersson <tor@ccxvii.net> | 2025-02-04 19:19:36 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2025-02-04 19:19:48 +0100 |
commit | 9cd9264d7154005c5d8633165684bf83647b7b5b (patch) | |
tree | 8ee98e8963bd137c028b42b8e370c221d7c73a93 /public | |
parent | 134e343918a6312e533f66993b12563129b8afa8 (diff) | |
download | server-9cd9264d7154005c5d8633165684bf83647b7b5b.tar.gz |
delete unused save/restore debugging stuff
Diffstat (limited to 'public')
-rw-r--r-- | public/common/client.js | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/public/common/client.js b/public/common/client.js index 393eb0a..a11f712 100644 --- a/public/common/client.js +++ b/public/common/client.js @@ -569,10 +569,6 @@ function connect_play() { if (typeof on_reply === "function") on_reply(arg[0], arg[1]) break - - case "save": - window.localStorage[params.title_id + "/save"] = arg - break } } } @@ -743,14 +739,6 @@ function send_query(q, param) { send_message("query", [ q, param ]) } -function send_save() { - send_message("save") -} - -function send_restore() { - send_message("restore", window.localStorage[params.title_id + "/save"]) -} - /* REPLAY */ function init_replay() { |