Make dem entity constructors Deprecated cos they look ugly
This commit is contained in:
parent
d74fed7e39
commit
fc9337504c
@ -28,14 +28,17 @@ public class MiscDisguise extends Disguise {
|
|||||||
this(disguiseType, true, id, data);
|
this(disguiseType, true, id, data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Deprecated
|
||||||
public MiscDisguise(EntityType entityType) {
|
public MiscDisguise(EntityType entityType) {
|
||||||
this(entityType, true, -1, -1);
|
this(entityType, true, -1, -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Deprecated
|
||||||
public MiscDisguise(EntityType entityType, boolean replaceSounds) {
|
public MiscDisguise(EntityType entityType, boolean replaceSounds) {
|
||||||
this(entityType, replaceSounds, -1, -1);
|
this(entityType, replaceSounds, -1, -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Deprecated
|
||||||
public MiscDisguise(EntityType entityType, boolean replaceSounds, int id, int data) {
|
public MiscDisguise(EntityType entityType, boolean replaceSounds, int id, int data) {
|
||||||
super(DisguiseType.getType(entityType), replaceSounds);
|
super(DisguiseType.getType(entityType), replaceSounds);
|
||||||
if (id == -1)
|
if (id == -1)
|
||||||
@ -46,6 +49,7 @@ public class MiscDisguise extends Disguise {
|
|||||||
this.data = data;
|
this.data = data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Deprecated
|
||||||
public MiscDisguise(EntityType disguiseType, int id, int data) {
|
public MiscDisguise(EntityType disguiseType, int id, int data) {
|
||||||
this(disguiseType, true, id, data);
|
this(disguiseType, true, id, data);
|
||||||
}
|
}
|
||||||
|
@ -22,14 +22,17 @@ public class MobDisguise extends Disguise {
|
|||||||
this.isAdult = isAdult;
|
this.isAdult = isAdult;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Deprecated
|
||||||
public MobDisguise(EntityType entityType) {
|
public MobDisguise(EntityType entityType) {
|
||||||
this(entityType, true);
|
this(entityType, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Deprecated
|
||||||
public MobDisguise(EntityType entityType, boolean isAdult) {
|
public MobDisguise(EntityType entityType, boolean isAdult) {
|
||||||
this(entityType, isAdult, true);
|
this(entityType, isAdult, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Deprecated
|
||||||
public MobDisguise(EntityType entityType, boolean isAdult, boolean replaceSounds) {
|
public MobDisguise(EntityType entityType, boolean isAdult, boolean replaceSounds) {
|
||||||
super(DisguiseType.getType(entityType), replaceSounds);
|
super(DisguiseType.getType(entityType), replaceSounds);
|
||||||
this.isAdult = isAdult;
|
this.isAdult = isAdult;
|
||||||
|
Loading…
Reference in New Issue
Block a user