This commit is contained in:
aozhiwei 2023-09-05 11:43:07 +08:00
parent cfa16df050
commit 082d2a940a
2 changed files with 11 additions and 2 deletions

View File

@ -53,6 +53,15 @@ class NftController extends BaseAuthedController
case Nft::HONOR1_TYPE : {
array_push($listInfo,$info);
}
break;
case Nft::GENESIS_TYPE : {
array_push($listInfo,$info);
}
break;
case Nft::PLANET_TYPE : {
array_push($listInfo,$info);
}
break;
}
}
}

View File

@ -63,7 +63,7 @@ class DynData extends BaseModel {
public static function incVEx($accountId, $x, $y, $val)
{
$oldVal = self::getVEx($x, $y);
$oldVal = self::getVEx($accountId, $x, $y);
SqlHelper::upsert
(myself()->_getMysql($accountId),
't_dyndata',