This commit is contained in:
aozhiwei 2024-10-15 19:26:48 +08:00
parent a7c69faee1
commit c7509063d1

View File

@ -84,7 +84,8 @@ func (this *player) parseUserInfo(userInfo *common.UserInfo){
}
} else {
if found {
copy(this.battleItems[index:], this.battleItems[index+1:])
this.battleItems = this.battleItems[:len(this.battleItems)-1]
}
}
}