From 76b73b26d360330b03eccd9f032d399522d35f96 Mon Sep 17 00:00:00 2001 From: Akif Dinc Date: Tue, 16 Feb 2021 22:34:39 +0100 Subject: [PATCH] Fixing short commands for figurine names --- client/src/cmdhfjooki.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/client/src/cmdhfjooki.c b/client/src/cmdhfjooki.c index d31218b08..df7cba428 100644 --- a/client/src/cmdhfjooki.c +++ b/client/src/cmdhfjooki.c @@ -348,8 +348,6 @@ static int CmdHF14AJookiEncode(const char *Cmd) { if( ftid && ffid ) { figure_abbr = true; - tid = 0x01; - fid = 0x00; } if ( ftid > 0x04 || ffid > 0x20 ) { @@ -363,7 +361,7 @@ static int CmdHF14AJookiEncode(const char *Cmd) { PrintAndLogEx(ERR, "Select one tag type or use figurine type id and figurine id"); return PM3_EINVARG; } else { - tid = ftid; + tid = 0x01; fid = ffid; }