1
This commit is contained in:
parent
77c7c12213
commit
18d75d5dab
@ -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');
|
||||
|
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user