From aa2e0e01687e972e241d3773bcf024385cb0d894 Mon Sep 17 00:00:00 2001 From: unanmed <1319491857@qq.com> Date: Mon, 18 Nov 2024 22:17:12 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=99=BA=E6=85=A7=E5=A1=94=E7=89=B9?= =?UTF-8?q?=E6=AE=8A=E6=88=98=E4=BA=8C=E6=8A=80=E8=83=BD=E7=A9=BF=E5=A2=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/plugin/boss/towerBoss.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugin/boss/towerBoss.ts b/src/plugin/boss/towerBoss.ts index 8729f09..167a1de 100644 --- a/src/plugin/boss/towerBoss.ts +++ b/src/plugin/boss/towerBoss.ts @@ -338,8 +338,8 @@ export class TowerBoss extends BarrageBoss { } releaseSkill2() { - const x = Math.floor(Math.random() * 13 + 1); - const y = Math.floor(Math.random() * 13 + 1); + const x = Math.floor(Math.random() * 11 + 2); + const y = Math.floor(Math.random() * 11 + 2); const proj = this.createProjectile(PortalProjectile, 0, 0); proj.setTarget(x, y); proj.createEffect(TowerBoss.effect);