From 1d510f76dbec34fdda0db2e3fb8635dc3475a728 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Sun, 10 Jul 2016 14:45:12 +0200 Subject: [PATCH] Update error message with machinekit. #2742 --- lib/Slic3r/Config.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/Config.pm b/lib/Slic3r/Config.pm index 559833987..bfbeee88c 100644 --- a/lib/Slic3r/Config.pm +++ b/lib/Slic3r/Config.pm @@ -235,7 +235,7 @@ sub validate { die "Invalid value for --gcode-flavor\n" if !first { $_ eq $self->gcode_flavor } @{$Options->{gcode_flavor}{values}}; - die "--use-firmware-retraction is only supported by Marlin firmware\n" + die "--use-firmware-retraction is only supported by Marlin and Machinekit firmware\n" if $self->use_firmware_retraction && $self->gcode_flavor ne 'smoothie' && $self->gcode_flavor ne 'reprap' && $self->gcode_flavor ne 'machinekit'; die "--use-firmware-retraction is not compatible with --wipe\n"