From 5583cfbc703fd19bd856441b8d179fe3ebf4b4fd Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sat, 16 Mar 2019 11:07:49 +0100 Subject: [PATCH] chg: 'lf search' - text --- client/cmdlf.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/client/cmdlf.c b/client/cmdlf.c index 948cf2235..aa3501f6b 100644 --- a/client/cmdlf.c +++ b/client/cmdlf.c @@ -884,13 +884,10 @@ int CmdLFfind(const char *Cmd) { // The improved noise detection will find Cotag. if (getSignalProperties()->isnoise) { - PrintAndLogEx(INFO, "Signal looks just like noise. Looking for Hitag signal now."); - - // 26 === RHT2F_UID_ONLY if (CmdLFHitagReader("26") == 0) { PrintAndLogEx(SUCCESS, "\nValid " _GREEN_("Hitag") " found!"); return 1;} if (CmdCOTAGRead("") > 0) { PrintAndLogEx(SUCCESS, "\nValid " _GREEN_("COTAG ID") " found!"); return 1;} - PrintAndLogEx(FAILED, "\nNo data found! - maybe not an LF tag?"); + PrintAndLogEx(FAILED, "\n" _YELLOW_("No data found!") " - Signal looks like noise. Maybe not an LF tag?"); return 0; } }