Skip to content

Commit

Permalink
progress模块试图读取不存在进度时不再直接报错
Browse files Browse the repository at this point in the history
  • Loading branch information
MrZ626 committed Oct 9, 2023
1 parent b9b1539 commit 21dba6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/progress.lua
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ local prgs=setmetatable({
gem_wip=false,
},{
__index=function(_,k)
error("Attempt to read undefined progress data: "..tostring(k))
LOG("Attempt to read undefined progress data: "..tostring(k))
end,
})

Expand Down

0 comments on commit 21dba6c

Please sign in to comment.