summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/material/Step.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/bukkit/material/Step.java')
-rw-r--r--src/main/java/org/bukkit/material/Step.java39
1 files changed, 10 insertions, 29 deletions
diff --git a/src/main/java/org/bukkit/material/Step.java b/src/main/java/org/bukkit/material/Step.java
index 7f46af26..8c255ba0 100644
--- a/src/main/java/org/bukkit/material/Step.java
+++ b/src/main/java/org/bukkit/material/Step.java
@@ -11,47 +11,28 @@ import org.bukkit.Material;
public class Step extends TexturedMaterial {
private static final List<Material> textures = new ArrayList<Material>();
static {
- textures.add(Material.STONE);
- textures.add(Material.SANDSTONE);
- textures.add(Material.WOOD);
- textures.add(Material.COBBLESTONE);
- textures.add(Material.BRICK);
- textures.add(Material.SMOOTH_BRICK);
- textures.add(Material.NETHER_BRICK);
- textures.add(Material.QUARTZ_BLOCK);
+ textures.add(Material.LEGACY_STONE);
+ textures.add(Material.LEGACY_SANDSTONE);
+ textures.add(Material.LEGACY_WOOD);
+ textures.add(Material.LEGACY_COBBLESTONE);
+ textures.add(Material.LEGACY_BRICK);
+ textures.add(Material.LEGACY_SMOOTH_BRICK);
+ textures.add(Material.LEGACY_NETHER_BRICK);
+ textures.add(Material.LEGACY_QUARTZ_BLOCK);
}
public Step() {
- super(Material.STEP);
- }
-
- /**
- * @param type the raw type id
- * @deprecated Magic value
- */
- @Deprecated
- public Step(final int type) {
- super(type);
+ super(Material.LEGACY_STEP);
}
public Step(final Material type) {
- super((textures.contains(type)) ? Material.STEP : type);
+ super((textures.contains(type)) ? Material.LEGACY_STEP : type);
if (textures.contains(type)) {
setMaterial(type);
}
}
/**
- * @param type the raw type id
- * @param data the raw data value
- * @deprecated Magic value
- */
- @Deprecated
- public Step(final int type, final byte data) {
- super(type, data);
- }
-
- /**
* @param type the type
* @param data the raw data value
* @deprecated Magic value