@@ -7,14 +7,25 @@ import org.bukkit.entity.EntityType;
|
||||
* Represents a spawn egg that can be used to spawn mobs
|
||||
*/
|
||||
public class SpawnEgg extends MaterialData {
|
||||
|
||||
public SpawnEgg() {
|
||||
super(Material.MONSTER_EGG);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @deprecated Magic value
|
||||
*/
|
||||
@Deprecated
|
||||
public SpawnEgg(int type, byte data){
|
||||
super(type, data);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @deprecated Magic value
|
||||
*/
|
||||
@Deprecated
|
||||
public SpawnEgg(byte data) {
|
||||
super(Material.MONSTER_EGG, data);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user