Fix bug in 6975b4b
John Smith

John Smith commited on 2022-206 08:52:36
Showing 1 changed files, with 1 additions and 1 deletions.

... ...
@@ -205,7 +205,7 @@ if action == "a" then
205 205
             local nc = {}
206 206
             -- these Prompts will just be converted to Rec, so we don't need to exclude answers from prompt-text
207 207
             for _re in pt:gmatch("%{[^%}]+%}") do
208
-                table.insert(nc, Prompt:new(pt, "", os.time(), 30, 0, 0, os.time(), conf:get("StartingEase") or 2.5))
208
+                table.insert(nc, Prompt:new(pt, "", os.time(), 30, 0, 0, os.time(), config:get("StartingEase") or 2.5))
209 209
                 prctr = prctr + 1
210 210
             end
211 211
             table.insert(deck, nc)
212 212