This commit is contained in:
aozhiwei 2024-10-17 10:31:28 +08:00
parent 55fcceb9ee
commit 57d772c6db
2 changed files with 6 additions and 0 deletions

View File

@ -1040,6 +1040,7 @@ class Hero extends BaseModel {
if ($rightVal > 0){ if ($rightVal > 0){
$lucky += $rightVal; $lucky += $rightVal;
} }
$lucky += myself()->_callModelStatic('LuckySymbol', 'getLuckyInc');
return $lucky; return $lucky;
} }

View File

@ -56,4 +56,9 @@ class LuckySymbol extends BaseModel {
); );
} }
public static function getLuckyInc()
{
}
} }