mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-23 16:56:31 +01:00
[Bleeding] Correct errors in LongGrass and MonsterEggs materials. Addresses BUKKIT-1083
By: Mike Primm <mike@primmhome.com>
This commit is contained in:
parent
839a674c9b
commit
b9310ad9c5
2 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@ import org.bukkit.Material;
|
|||
*/
|
||||
public class LongGrass extends MaterialData {
|
||||
public LongGrass() {
|
||||
super(Material.LOG);
|
||||
super(Material.LONG_GRASS);
|
||||
}
|
||||
|
||||
public LongGrass(GrassSpecies species) {
|
||||
|
|
|
@ -18,7 +18,7 @@ public class MonsterEggs extends TexturedMaterial {
|
|||
}
|
||||
|
||||
public MonsterEggs() {
|
||||
super(Material.SMOOTH_BRICK);
|
||||
super(Material.MONSTER_EGGS);
|
||||
}
|
||||
|
||||
public MonsterEggs(final int type) {
|
||||
|
|
Loading…
Add table
Reference in a new issue