Fixed regression in cloaking core LUA scripts for CC

This commit is contained in:
Unknown 2018-05-13 22:17:17 +02:00 committed by unknown
parent 64afb1d1e8
commit a2d2ee9bde
3 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@ for _, side in pairs(sides) do
end
if cloakingcore == nil or cloakingcore.interfaced() == nil then
if cloakingCore == nil or cloakingCore.interfaced() == nil then
term.setBackgroundColor(colors.red)
term.setTextColor(colors.white)
term.write("No cloaking core detected")

View file

@ -14,7 +14,7 @@ for _, side in pairs(sides) do
end
if cloakingcore == nil or cloakingcore.interfaced() == nil then
if cloakingCore == nil or cloakingCore.interfaced() == nil then
term.setBackgroundColor(colors.red)
term.setTextColor(colors.white)
term.write("No cloaking core detected")

View file

@ -14,7 +14,7 @@ for _, side in pairs(sides) do
end
if cloakingcore == nil or cloakingcore.interfaced() == nil then
if cloakingCore == nil or cloakingCore.interfaced() == nil then
term.setBackgroundColor(colors.red)
term.setTextColor(colors.white)
term.write("No cloaking core detected")