2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Owen1212055 <23108066+Owen1212055@users.noreply.github.com>
|
|
|
|
Date: Mon, 5 Apr 2021 16:58:20 -0400
|
|
|
|
Subject: [PATCH] Set area affect cloud rotation
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
|
2021-07-17 03:48:27 +02:00
|
|
|
index 1a078b6c16d5932d4383113e455bd89884d2a98b..753b9773a46ebb4afefa9ccb2435bf48ff09b4b5 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
|
2021-07-17 03:48:27 +02:00
|
|
|
@@ -1975,6 +1975,7 @@ public class CraftWorld implements World {
|
2021-06-11 14:02:28 +02:00
|
|
|
entity = net.minecraft.world.entity.EntityType.LIGHTNING_BOLT.create(world);
|
|
|
|
} else if (AreaEffectCloud.class.isAssignableFrom(clazz)) {
|
2021-06-15 04:59:31 +02:00
|
|
|
entity = new net.minecraft.world.entity.AreaEffectCloud(this.world, x, y, z);
|
2021-06-11 14:02:28 +02:00
|
|
|
+ entity.moveTo(x, y, z, yaw, pitch); // Paper - Set area effect cloud Rotation
|
|
|
|
} else if (EvokerFangs.class.isAssignableFrom(clazz)) {
|
2021-06-15 04:59:31 +02:00
|
|
|
entity = new net.minecraft.world.entity.projectile.EvokerFangs(this.world, x, y, z, (float) Math.toRadians(yaw), 0, null);
|
|
|
|
} else if (Marker.class.isAssignableFrom(clazz)) {
|