Skip to content

Commit 318332c

Browse files
committed
PC应该继续使用带BUG击退
1 parent 7fe1893 commit 318332c

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

src/main/java/cn/nukkit/knockback/KnockbackManager.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,11 @@ private KnockbackManager() {
2323
// 修正版 Profile:使用 player.speed 获取真实速度
2424
register(new KnockbackProfile("corrected").setUseRealVelocity(true));
2525

26-
// PC 房间 Profile:更高的基础击退值 + 真实速度
27-
register(new KnockbackProfile("pc").setBaseH(0.37f).setBaseV(0.35f).setUseRealVelocity(true));
26+
// PC 房间 Profile:更高的基础击退值
27+
register(new KnockbackProfile("pc").setBaseH(0.37f).setBaseV(0.35f).setUseRealVelocity(false));
28+
29+
// PC 修正版
30+
register(new KnockbackProfile("pc-corrected").setBaseH(0.37f).setBaseV(0.35f).setUseRealVelocity(true));
2831
}
2932

3033
public static KnockbackManager get() {

0 commit comments

Comments
 (0)