mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 18:27:41 +01:00
a8ddf37419
By: GunfighterJ <joseph.jenniges@gmail.com>
9 lines
322 B
Diff
9 lines
322 B
Diff
@@ -9,6 +9,7 @@
|
|
|
|
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) {
|