diff --git a/automation/Scopes/HallScope.php b/automation/Scopes/HallScope.php index 7ebba06..a90a150 100644 --- a/automation/Scopes/HallScope.php +++ b/automation/Scopes/HallScope.php @@ -32,23 +32,23 @@ }, ]); - $this -> add_hatch_action("hatch_open", "Открыть люк", "hatch_motor", "open", 100, [ + $this -> add_hatch_action("hatch_open", "Открыть люк", "kitchen_hatch", "open", 100, [ "icon" => '', "description" => "Открыть люк в подвал", "author" => "Eugene Sukhodolskiy", "danger_level" => "dangerous", "state_callback" => function() { - return $this -> helper() -> make_hatch_indicator("hatch_motor"); + return $this -> helper() -> make_hatch_indicator("kitchen_hatch"); }, ]); - $this -> add_hatch_action("hatch_close", "Закрыть люк", "hatch_motor", "close", 100, [ + $this -> add_hatch_action("hatch_close", "Закрыть люк", "kitchen_hatch", "close", 100, [ "icon" => '', "description" => "Закрыть люк в подвал", "author" => "Eugene Sukhodolskiy", "danger_level" => "dangerous", "state_callback" => function() { - return $this -> helper() -> make_hatch_indicator("hatch_motor"); + return $this -> helper() -> make_hatch_indicator("kitchen_hatch"); }, ]); }