diff --git a/burnrate_driver.lua b/burnrate_driver.lua index a2164b2..29dceb6 100644 --- a/burnrate_driver.lua +++ b/burnrate_driver.lua @@ -36,7 +36,9 @@ local function stepDown() reactor.setBurnRate(value - rateStep) end end + local function startup() + return end local function shutdown() diff --git a/coolant_driver.lua b/coolant_driver.lua index 303b6c9..65cb3d3 100644 --- a/coolant_driver.lua +++ b/coolant_driver.lua @@ -32,6 +32,7 @@ end local function startup() + return end local function shutdown() diff --git a/speaker_driver.lua b/speaker_driver.lua index ad97e7f..aa45b8d 100644 --- a/speaker_driver.lua +++ b/speaker_driver.lua @@ -37,7 +37,7 @@ end local function playTTSFile(speakers, value) local message = textutils.urlEncode(value) local voice = "&voice=en-gb-scotland" - local url = "https://music.madefor.cc/tts?text=" .. message .. voice + local url = "http://api.astrocore.space/TextToSpeech?message=" .. message local response, err = http.get { url = url, binary = true } if not response then error(err, 0) end while true do diff --git a/turbine_driver.lua b/turbine_driver.lua index 63c8406..a0faaca 100644 --- a/turbine_driver.lua +++ b/turbine_driver.lua @@ -36,6 +36,7 @@ local function checkSteamLevel() end local function startup() + return end local function shutdown()