Skip to content

Commit e7ba477

Browse files
sapierPilzAdam
sapier
authored andcommittedJul 22, 2013
Remove debug output
1 parent 60225be commit e7ba477

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed
 

‎builtin/mainmenu.lua

-2
Original file line numberDiff line numberDiff line change
@@ -1081,14 +1081,12 @@ end
10811081

10821082
--------------------------------------------------------------------------------
10831083
function menu.update_gametype(reset)
1084-
print("updating gametype: " .. dump(reset))
10851084
if reset then
10861085
mm_texture.reset()
10871086
engine.set_topleft_text("")
10881087
filterlist.set_filtercriteria(worldlist,nil)
10891088
else
10901089
local game = menu.lastgame()
1091-
print("current_game = " .. dump(game))
10921090
mm_texture.update(tabbuilder.current_tab,game)
10931091
engine.set_topleft_text(game.name)
10941092
filterlist.set_filtercriteria(worldlist,game.id)

‎builtin/modstore.lua

-2
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ function modstore.handle_buttons(current_tab,fields)
143143
local fullurl = engine.setting_get("modstore_download_url") ..
144144
moddetails.download_url
145145
local modfilename = os.tempfolder() .. ".zip"
146-
print("Downloading mod from: " .. fullurl .. " to ".. modfilename)
147146

148147
if engine.download_file(fullurl,modfilename) then
149148

@@ -218,7 +217,6 @@ function modstore.getmodlist(list)
218217
if list.data[i].texturename == nil then
219218
local fullurl = engine.setting_get("modstore_download_url") ..
220219
details.screenshot_url
221-
print("downloading screenshot: " .. fullurl)
222220
local filename = os.tempfolder()
223221

224222
if engine.download_file(fullurl,filename) then

0 commit comments

Comments
 (0)
Please sign in to comment.