From b60c9774e1a7b743f4e5b574f4231e2c7968ed5e Mon Sep 17 00:00:00 2001 From: Djeeberjr Date: Sun, 25 Jun 2023 21:21:15 +0200 Subject: [PATCH] fixed missing Synopsys in Redstone --- src/bin/Redstone.hx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/Redstone.hx b/src/bin/Redstone.hx index 48dca00..14858d2 100644 --- a/src/bin/Redstone.hx +++ b/src/bin/Redstone.hx @@ -10,17 +10,17 @@ class Redstone extends CLIAppBase{ registerSyncSubcommand("on", (args)-> { Peripheral.instance.getRedstone(args[0]).setOutput(true); return true; - }); + },""); registerSyncSubcommand("off", (args)-> { Peripheral.instance.getRedstone(args[0]).setOutput(false); return true; - }); + },""); registerSyncSubcommand("get", (args)-> { var value = Peripheral.instance.getRedstone(args[0]).getAnalogInput(); handle.write("Analog input: " + value); return true; - }); + },""); } }