This commit is contained in:
hujiabin 2023-03-09 17:16:25 +08:00
parent 8de5a84b84
commit 42107b1a11
2 changed files with 2 additions and 2 deletions

View File

@ -299,7 +299,7 @@ class Gun extends BaseModel {
$unlockTime - myself()->_getNowTime()),
'unlock_trade_time' => $row['unlock_trade_time'],
'offer_reward_state' => 0,
'tags' => $row['tags']?:'',
'tags' => isset($row['tags'])?$row['tags']:'',
'lucky' => strval($gunLucky),
'chip_strength_sum' => 0,

View File

@ -297,7 +297,7 @@ class Hero extends BaseModel {
'unlock_trade_time' => $row['unlock_trade_time'],
'advanced_count' => $row['advanced_count'],
'offer_reward_state' => 0,
'tags' => $row['tags']?:'',
'tags' => isset($row['tags'])?$row['tags']:'',
//暂留(以下弃用字段)
'current_pvp_get_ceg' => $todayGetGold / 100,