Skip to content

Commit 36d2438

Browse files
authored
live-update.md (#534)
- images/live-update/05-liveupdate-settings-zip.png updated to reflect new settings panel - images/live-update/bundle-app.png updated live-update-scripting.md - There is no such function as `get_lu_archive_for_level(level_name)`, replaced -> get_lu_info_for_level(level_name) - There is no such function as `get_status_string(status)`, replaced -> response.status
1 parent 29949cb commit 36d2438

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed
-8.38 KB
Loading
7.68 KB
Loading

docs/en/manuals/live-update-scripting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ function init(self)
8181

8282
local level_name = "level1"
8383

84-
local info = get_lu_archive_for_level(level_name) -- <3>
84+
local info = get_lu_info_for_level(level_name) -- <3>
8585

8686
msg.post("#", "load_level", {level = "level1", info = info }) -- <4>
8787
end
@@ -109,7 +109,7 @@ function on_message(self, message_id, message, sender)
109109
end)
110110

111111
else
112-
print("Failed to download archive ", download_path, "from", url, ":", get_status_string(status))
112+
print("Failed to download archive ", download_path, "from", url, ":", response.status)
113113
end
114114
end, nil, nil, {path=download_path})
115115

0 commit comments

Comments
 (0)