1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-09-03 10:57:55 +00:00

Merge pull request #319 from Wilma456/defread

Add Default to read()
This commit is contained in:
Daniel Ratcliffe
2017-06-17 19:18:27 +01:00
committed by GitHub

View File

@@ -276,12 +276,17 @@ function printError( ... )
end
end
function read( _sReplaceChar, _tHistory, _fnComplete )
function read( _sReplaceChar, _tHistory, _fnComplete, _sDefault )
term.setCursorBlink( true )
local sLine = ""
local sLine
if type( _sDefault ) == "string" then
sLine = _sDefault
else
sLine = ""
end
local nHistoryPos
local nPos = 0
local nPos = #sLine
if _sReplaceChar then
_sReplaceChar = string.sub( _sReplaceChar, 1, 1 )
end