From d3c6b4f25ae16c9cf0f2c1e99133182a7dfb612b Mon Sep 17 00:00:00 2001 From: TheJoKlLa Date: Sun, 5 Dec 2021 16:55:58 +0000 Subject: [PATCH] Changed Get Machine by ID --- machinesystem.capnp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machinesystem.capnp b/machinesystem.capnp index b1daa32..331e5eb 100644 --- a/machinesystem.capnp +++ b/machinesystem.capnp @@ -15,7 +15,7 @@ interface MachineSystem interface Info $CSharp.name("InfoInterface") { getMachineList @0 () -> ( machine_list :List(Machine) ); - getMachine @1 ( name :Text ) -> ( machine :Machine, dummy :UInt8 = 0 ); + getMachine @1 ( id :Text ) -> ( machine :Machine, dummy :UInt8 = 0 ); getMachineURN @2 ( urn :Text ) -> ( machine :Machine, dummy :UInt8 = 0 ); } }