3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-19 04:50:06 +01:00

Fangs degree => radians (and back)

Dieser Commit ist enthalten in:
md_5 2016-11-30 09:56:09 +11:00
Ursprung 8d7e4d17e9
Commit fffaf07113

Datei anzeigen

@ -1160,7 +1160,7 @@ public class CraftWorld implements World {
} else if (AreaEffectCloud.class.isAssignableFrom(clazz)) {
entity = new EntityAreaEffectCloud(world, x, y, z);
} else if (EvokerFangs.class.isAssignableFrom(clazz)) {
entity = new EntityEvokerFangs(world, x, y, z, yaw, 0, null);
entity = new EntityEvokerFangs(world, x, y, z, (float) Math.toRadians(yaw), 0, null);
}
if (entity != null) {