割圆markcount数字排列改为由player.storage.dcgeyuan决定

This commit is contained in:
mengxinzxz 2023-10-21 18:30:31 +08:00 committed by GitHub
parent c44b0d59b9
commit 03c9f0cad3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -7311,8 +7311,8 @@ game.import('character',function(lib,game,ui,get,ai,_status){
intro:{
name:'圆环之理',
markcount:function(storage,player){
if(!player.getStorage('dcgeyuan_homura').length) return 0;
var list=[1,2,3,4,5,6,7,8,9,10,11,12,13].filter(i=>lib.skill.dcgeyuan.filterNumber(player,i));
if(!player.storage.dcgeyuan||!player.getStorage('dcgeyuan_homura').length) return 0;
var list=player.storage.dcgeyuan.filter(i=>lib.skill.dcgeyuan.filterNumber(player,i));
if(!list.length) return 0;
list=list.map(num=>{
var list=[1,10,11,12,13];