mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-05 02:22:12 +01:00
SPIGOT-6801: Wrong BlockData classes in Material enum for SOUL_FIRE and SOUL_TORCH
By: BlackHole <black-hole@live.com>
This commit is contained in:
parent
bf2c5f3df0
commit
1594310d44
1 changed files with 2 additions and 8 deletions
|
@ -753,10 +753,7 @@ public enum Material implements Keyed {
|
||||||
*/
|
*/
|
||||||
POLISHED_BASALT(11659, Orientable.class),
|
POLISHED_BASALT(11659, Orientable.class),
|
||||||
SMOOTH_BASALT(13617),
|
SMOOTH_BASALT(13617),
|
||||||
/**
|
SOUL_TORCH(14292),
|
||||||
* BlockData: {@link Lightable}
|
|
||||||
*/
|
|
||||||
SOUL_TORCH(14292, Lightable.class),
|
|
||||||
GLOWSTONE(32713),
|
GLOWSTONE(32713),
|
||||||
INFESTED_STONE(18440),
|
INFESTED_STONE(18440),
|
||||||
INFESTED_COBBLESTONE(4348),
|
INFESTED_COBBLESTONE(4348),
|
||||||
|
@ -2631,10 +2628,7 @@ public enum Material implements Keyed {
|
||||||
* BlockData: {@link Fire}
|
* BlockData: {@link Fire}
|
||||||
*/
|
*/
|
||||||
FIRE(16396, Fire.class),
|
FIRE(16396, Fire.class),
|
||||||
/**
|
SOUL_FIRE(30163),
|
||||||
* BlockData: {@link Fire}
|
|
||||||
*/
|
|
||||||
SOUL_FIRE(30163, Fire.class),
|
|
||||||
/**
|
/**
|
||||||
* BlockData: {@link RedstoneWire}
|
* BlockData: {@link RedstoneWire}
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue