This commit is contained in:
aozhiwei 2024-07-19 14:26:47 +08:00
parent 77c7c12213
commit 18d75d5dab
2 changed files with 7 additions and 0 deletions

View File

@ -34,6 +34,10 @@ class OutAppMintController extends BaseController {
myself()->_rspErr(1, 'hero not found');
return;
}
if ($heroDb['quality'] <= 1) {
myself()->_rspErr(1, 'hero is N quality');
return;
}
/*
if (!$heroDb['seal_type']) {
myself()->_rspErr(1, 'hero no seal');

View File

@ -467,6 +467,9 @@ class OutAppNftController extends BaseController {
'rows' => array()
);
foreach ($rows as $row) {
if ($row['quality'] <= 1) {
continue;
}
$info = array(
'uniid' => '',
'net_id' => 0,