mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-01 00:10:32 +01:00
89d51d5f29
Because this exploit has been widely known for years and has not been fixed by Mojang, we decided that it was worth allowing people to toggle it on/off due to how easy it is to make it configurable. It should be noted that this decision does not promise all future exploits will be configurable.
31 lines
1.3 KiB
Diff
31 lines
1.3 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: TrollyLoki <trollyloki@gmail.com>
|
|
Date: Tue, 10 Oct 2023 00:45:01 -0400
|
|
Subject: [PATCH] Make setVelocity method of Fireballs change the travel
|
|
direction to an arbitrary vector
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftFireball.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftFireball.java
|
|
index 2783e218d5e5c24787429237974e196761f4d02b..1d8aab2fda18c6e2bb30f6ba4a6325263267b628 100644
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftFireball.java
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftFireball.java
|
|
@@ -46,6 +46,18 @@ public class CraftFireball extends AbstractProjectile implements Fireball {
|
|
this.update(); // SPIGOT-6579
|
|
}
|
|
|
|
+ // Paper start - set direction without normalizing
|
|
+ @Override
|
|
+ public void setVelocity(Vector velocity) {
|
|
+ Preconditions.checkArgument(velocity != null, "Vector velocity cannot be null");
|
|
+ velocity.checkFinite();
|
|
+ this.getHandle().xPower = velocity.getX();
|
|
+ this.getHandle().yPower = velocity.getY();
|
|
+ this.getHandle().zPower = velocity.getZ();
|
|
+ update();
|
|
+ }
|
|
+ // Paper end - set direction without normalizing
|
|
+
|
|
@Override
|
|
public AbstractHurtingProjectile getHandle() {
|
|
return (AbstractHurtingProjectile) this.entity;
|