Rs794613 / PcrRun

基于PCR角色的赛跑小游戏,可以积分下注,也可以自己设计角色。

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

一些角色的技能判定没有排除自己

jhwisp opened this issue · comments

commented

def select_random(id):

发现一个bug,在开启所有角色后,群友游玩时发现xcw使用ub时会击退自己,看代码经过测试后发现select_random(id),nselect_random(id,n)和set_kokoro_num(self,gid,kokoro_id)里的list没有删除掉自身的id导致出现这个问题。

例:select_random(id)对应的201和202行是不是应该改为
l1 = list(range(1,NUMBER+1))
l1.remove(id)

这里确实有问题,已修改,多谢建议。