fix: change user confirmation "MINE" to "yes"

This commit is contained in:
Guillaume ARM 2024-05-11 16:54:16 +02:00
parent 809f2a78c0
commit 84e497300e

View File

@ -326,11 +326,11 @@ local function waitForUserConfirmation()
print('> targetY: ' .. config.targetY) print('> targetY: ' .. config.targetY)
print('> height: ' .. config.height) print('> height: ' .. config.height)
print('> size: ' .. config.size) print('> size: ' .. config.size)
print('> type "MINE" to start the mining process.') print('> type "yes" to start the mining process.')
local val = read() local val = read()
if val == 'MINE' then if val == 'yes' then
return true return true
end end