From 84e497300e38068da38b8f3c956d113951d05932 Mon Sep 17 00:00:00 2001 From: Guillaume ARM Date: Sat, 11 May 2024 16:54:16 +0200 Subject: [PATCH] fix: change user confirmation "MINE" to "yes" --- miner.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/miner.lua b/miner.lua index 77dd6fa..7cb4267 100644 --- a/miner.lua +++ b/miner.lua @@ -326,11 +326,11 @@ local function waitForUserConfirmation() print('> targetY: ' .. config.targetY) print('> height: ' .. config.height) print('> size: ' .. config.size) - print('> type "MINE" to start the mining process.') + print('> type "yes" to start the mining process.') local val = read() - if val == 'MINE' then + if val == 'yes' then return true end