1
This commit is contained in:
parent
06ff5367a3
commit
5e662854ee
@ -188,9 +188,9 @@ class Gun extends BaseModel {
|
||||
'attr_chip' => Chip::getChipAttr($row['chip_ids'])['attr_chip'],
|
||||
'chip_core' => Chip::getChipAttr($row['chip_ids'])['chip_core'],
|
||||
'try_count' => $row['try_count'],
|
||||
'current_pvp_get_ceg' => $todayGetGold,
|
||||
'current_pvp_get_ceg' => $todayGetGold / 100,
|
||||
'last_pvp_get_ceg_time' => $lastGetGoldTime,
|
||||
'current_pve_get_ceg' => $todayPveGetCeg,
|
||||
'current_pve_get_ceg' => $todayPveGetCeg / 100,
|
||||
'last_pve_get_ceg_time' => $lastPveGetCegTime,
|
||||
'lock_type' => $lockType,
|
||||
'unlock_time' => $unlockTime,
|
||||
@ -329,7 +329,7 @@ class Gun extends BaseModel {
|
||||
if ($finalyAddGold > 0) {
|
||||
self::update($gunDto['gun_uniid'],
|
||||
array(
|
||||
'today_get_gold' => $newGold,
|
||||
'today_get_gold' => $newGold * 100,
|
||||
'last_get_gold_time' => myself()->_getNowTime()
|
||||
));
|
||||
}
|
||||
@ -344,7 +344,7 @@ class Gun extends BaseModel {
|
||||
if ($finalyAddGold > 0) {
|
||||
self::update($gunDto['gun_uniid'],
|
||||
array(
|
||||
'today_pve_get_ceg' => $newGold,
|
||||
'today_pve_get_ceg' => $newGold * 100,
|
||||
'last_pve_get_ceg_time' => myself()->_getNowTime()
|
||||
));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user