1
0
mirror of https://github.com/HybridDog/pdisc.git synced 2025-07-01 15:50:44 +02:00

allow discarding the return values of instructions

M  faden.lua
M  standardbefehlssatz.lua
M  util/standartbefehlssatz_doc.lua
This commit is contained in:
Hybrid Dog
2017-01-03 14:44:06 +01:00
parent fd15773adb
commit e70f51aa32
3 changed files with 7 additions and 11 deletions

View File

@ -237,7 +237,7 @@ s = {
if type(p) ~= "number" then
return false, UAT
end
subsucc,msg = s.usleep({p * 1000000}, faden)
local subsucc,msg = s.usleep({p * 1000000}, faden)
if not subsucc then
return false, SE .. msg
end