mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-12-12 03:00:30 +00:00
Add Checks for Turtle and Pocket programs (#226)
Error if turtle and pocket computers programs are not run on their respective devices.
This commit is contained in:
parent
da7e4b9016
commit
56434259c1
@ -1,3 +1,8 @@
|
||||
if not pocket then
|
||||
printError( "Requires a Pocket Computer" )
|
||||
return
|
||||
end
|
||||
|
||||
local ok, err = pocket.equipBack()
|
||||
if not ok then
|
||||
printError( err )
|
||||
|
@ -1,3 +1,8 @@
|
||||
if not pocket then
|
||||
printError( "Requires a Pocket Computer" )
|
||||
return
|
||||
end
|
||||
|
||||
local ok, err = pocket.unequipBack()
|
||||
if not ok then
|
||||
printError( err )
|
||||
|
@ -1,3 +1,7 @@
|
||||
if not turtle then
|
||||
printError( "Requires a Turtle" )
|
||||
return
|
||||
end
|
||||
|
||||
if not turtle.craft then
|
||||
print( "Requires a Crafty Turtle" )
|
||||
|
@ -1,3 +1,6 @@
|
||||
if not turtle then
|
||||
printError( "Requires a Turtle" )
|
||||
end
|
||||
|
||||
local tMoves = {
|
||||
function()
|
||||
|
@ -1,3 +1,7 @@
|
||||
if not turtle then
|
||||
printError( "Requires a Turtle" )
|
||||
return
|
||||
end
|
||||
|
||||
local tArgs = { ... }
|
||||
local function printUsage()
|
||||
|
@ -1,3 +1,7 @@
|
||||
if not turtle then
|
||||
printError( "Requires a Turtle" )
|
||||
return
|
||||
end
|
||||
|
||||
local tArgs = { ... }
|
||||
if #tArgs ~= 1 then
|
||||
|
@ -1,3 +1,8 @@
|
||||
if not turtle then
|
||||
printError( "Requires a Turtle" )
|
||||
return
|
||||
end
|
||||
|
||||
local tArgs = { ... }
|
||||
if #tArgs < 1 then
|
||||
print( "Usage: go <direction> <distance>" )
|
||||
|
@ -1,3 +1,7 @@
|
||||
if not turtle then
|
||||
printError( "Requires a Turtle" )
|
||||
return
|
||||
end
|
||||
|
||||
local tArgs = { ... }
|
||||
local nLimit = 1
|
||||
|
@ -1,3 +1,7 @@
|
||||
if not turtle then
|
||||
printError( "Requires a Turtle" )
|
||||
return
|
||||
end
|
||||
|
||||
local tArgs = { ... }
|
||||
if #tArgs ~= 1 then
|
||||
|
@ -1,3 +1,8 @@
|
||||
if not turtle then
|
||||
printError( "Requires a Turtle" )
|
||||
return
|
||||
end
|
||||
|
||||
local tArgs = { ... }
|
||||
if #tArgs < 1 then
|
||||
print( "Usage: turn <direction> <turns>" )
|
||||
|
@ -1,3 +1,7 @@
|
||||
if not turtle then
|
||||
printError( "Requires a Turtle" )
|
||||
return
|
||||
end
|
||||
|
||||
local tArgs = { ... }
|
||||
local function printUsage()
|
||||
|
Loading…
Reference in New Issue
Block a user