This commit is contained in:
aozhiwei 2024-11-22 13:59:31 +08:00
parent a0dec1f8d9
commit 42063e9cd9

View File

@ -28,7 +28,11 @@ func (this *buff) Add(accountId string, buffList []int32) {
for buffId := range(buffList) {
buffMeta := mt.Table.Buff.GetById(int64(buffId))
if buffMeta != nil {
if buffMeta.GetCanStack() == 0 {
} else {
}
}
}
}