blob: 6fb2afa5d31412abbf5cf428c9010b100ac04c21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
package net.minecraft.server;
import java.util.ArrayList;
public class EntityPainting extends EntityHanging {
public EnumArt art;
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, int i, int j, int k, int l) {
super(world, i, j, k, l);
ArrayList arraylist = new ArrayList();
EnumArt[] aenumart = EnumArt.values();
int i1 = aenumart.length;
for (int j1 = 0; j1 < i1; ++j1) {
EnumArt enumart = aenumart[j1];
this.art = enumart;
this.setDirection(l);
if (this.survives()) {
arraylist.add(enumart);
}
}
if (!arraylist.isEmpty()) {
this.art = (EnumArt) arraylist.get(this.random.nextInt(arraylist.size()));
}
this.setDirection(l);
}
public void b(NBTTagCompound nbttagcompound) {
nbttagcompound.setString("Motive", this.art.B);
super.b(nbttagcompound);
}
public void a(NBTTagCompound nbttagcompound) {
String s = nbttagcompound.getString("Motive");
EnumArt[] aenumart = EnumArt.values();
int i = aenumart.length;
for (int j = 0; j < i; ++j) {
EnumArt enumart = aenumart[j];
if (enumart.B.equals(s)) {
this.art = enumart;
}
}
if (this.art == null) {
this.art = EnumArt.KEBAB;
}
super.a(nbttagcompound);
}
public int d() {
return this.art.C;
}
public int g() {
return this.art.D;
}
public void h() {
this.a(new ItemStack(Item.PAINTING), 0.0F);
}
}
|