From d9f0f44221e76c23bad1984c71639c3f6699c984 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=97=E6=B2=A2=E5=93=8D=E4=B9=9F?= <72963826+Hibiya615@users.noreply.github.com> Date: Thu, 28 Aug 2025 14:54:19 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=AE=BE=E7=BD=AE=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PVP/PVPToy.cs | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/PVP/PVPToy.cs b/PVP/PVPToy.cs index 3c5cc93..424664a 100644 --- a/PVP/PVPToy.cs +++ b/PVP/PVPToy.cs @@ -49,7 +49,8 @@ public class PVPToy AddPoint1 = 1, AddPoint2 = 2, AddPoint3 = 3, - AddPointMax = 4, + AddPoint4 = 4, + AddPoint5 = 5, } [UserSetting(note: "请选择复原时的移速")] @@ -87,10 +88,15 @@ public class PVPToy if(isHack) accessory.Method.SendChat($"/pdrspeed 1.3"); if(isHack && isDeveloper) accessory.Method.SendChat($"/e 移速已设置为1.3"); } - else if (SkySpeed == SkySpeedEnum.AddPointMax) + else if (SkySpeed == SkySpeedEnum.AddPoint4) { - if(isHack) accessory.Method.SendChat($"/pdrspeed 1.35"); - if(isHack && isDeveloper) accessory.Method.SendChat($"/e 移速已设置为1.35"); + if(isHack) accessory.Method.SendChat($"/pdrspeed 1.4"); + if(isHack && isDeveloper) accessory.Method.SendChat($"/e 移速已设置为1.4"); + } + else if (SkySpeed == SkySpeedEnum.AddPoint5) + { + if(isHack) accessory.Method.SendChat($"/pdrspeed 1.5"); + if(isHack && isDeveloper) accessory.Method.SendChat($"/e 移速已设置为1.5"); } }