mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-25 09:34:44 +01:00
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) {
|