mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
Fixing short commands for figurine names
This commit is contained in:
parent
2a07959da6
commit
76b73b26d3
1 changed files with 1 additions and 3 deletions
|
@ -348,8 +348,6 @@ static int CmdHF14AJookiEncode(const char *Cmd) {
|
||||||
|
|
||||||
if( ftid && ffid ) {
|
if( ftid && ffid ) {
|
||||||
figure_abbr = true;
|
figure_abbr = true;
|
||||||
tid = 0x01;
|
|
||||||
fid = 0x00;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( ftid > 0x04 || ffid > 0x20 ) {
|
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");
|
PrintAndLogEx(ERR, "Select one tag type or use figurine type id and figurine id");
|
||||||
return PM3_EINVARG;
|
return PM3_EINVARG;
|
||||||
} else {
|
} else {
|
||||||
tid = ftid;
|
tid = 0x01;
|
||||||
fid = ffid;
|
fid = ffid;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue