2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/EntityPainting.java
|
|
|
|
+++ b/net/minecraft/server/EntityPainting.java
|
2017-05-14 04:00:00 +02:00
|
|
|
@@ -11,6 +11,7 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
public EntityPainting(World world) {
|
|
|
|
super(world);
|
|
|
|
+ this.art = EnumArt.values()[this.random.nextInt(EnumArt.values().length)]; // CraftBukkit - generate a non-null painting
|
|
|
|
}
|
|
|
|
|
|
|
|
public EntityPainting(World world, BlockPosition blockposition, EnumDirection enumdirection) {
|