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 : { case Nft::HONOR1_TYPE : {
array_push($listInfo,$info); array_push($listInfo,$info);
} }
break;
case Nft::GENESIS_TYPE : {
array_push($listInfo,$info);
}
break;
case Nft::PLANET_TYPE : {
array_push($listInfo,$info);
}
break;
} }
} }
} }
@ -132,4 +141,4 @@ class NftController extends BaseAuthedController
)); ));
} }
} }

View File

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