geforkt von Mirrors/Paper
Add missing materials to Step. Fixes BUKKIT-4074
When Minecraft 1.4.6 was released, Nether Brick texturing to steps was added. Minecraft 1.5 added Quartz texturing to steps. When Bukkit was updated to these version the textures for steps were not applied. Currently it is not possible to set the texture of steps to quartz or nether brick. This commit fixes that by adding the respective values to the allowable materials list. By: Peter Olson <peter.olson@gmail.com>
Dieser Commit ist enthalten in:
Ursprung
121764ab61
Commit
fd0b9b4a0d
@ -17,6 +17,8 @@ public class Step extends TexturedMaterial {
|
|||||||
textures.add(Material.COBBLESTONE);
|
textures.add(Material.COBBLESTONE);
|
||||||
textures.add(Material.BRICK);
|
textures.add(Material.BRICK);
|
||||||
textures.add(Material.SMOOTH_BRICK);
|
textures.add(Material.SMOOTH_BRICK);
|
||||||
|
textures.add(Material.NETHER_BRICK);
|
||||||
|
textures.add(Material.QUARTZ_BLOCK);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Step() {
|
public Step() {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren