From 62b7c33d33af1d8f28a9d924e247587e902bbfc4 Mon Sep 17 00:00:00 2001 From: xinian Date: Tue, 24 Feb 2026 00:28:40 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=AD=A3=E6=8D=95=E8=8E=B7?= =?UTF-8?q?=E6=80=AA=E7=89=A9=E6=97=B6=E8=83=B6=E5=9B=8AID=E7=9A=84?= =?UTF-8?q?=E6=A3=80=E6=9F=A5=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- logic/controller/fight_base.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logic/controller/fight_base.go b/logic/controller/fight_base.go index 6ff1974b..6acaba31 100644 --- a/logic/controller/fight_base.go +++ b/logic/controller/fight_base.go @@ -59,7 +59,7 @@ func (h Controller) Capture(data *fight.CatchMonsterInboundInfo, c *player.Playe return nil, err } if c.GetSpace().IsTime { - if data.ItemId < 300009 { + if data.CapsuleId < 300009 { return nil, errorcode.ErrorCodes.ErrCannotPerformAction } }