0

textures: add amethyst block, raw iron, raw gold

This commit is contained in:
Nicolas F
2021-06-10 17:42:30 +02:00
parent c717b7170f
commit 66195f6fc7
4 changed files with 15 additions and 1 deletions

View File

@@ -312,6 +312,11 @@ enum mc_block_id {
block_soul_torch = 1039,
block_soul_fire = 1040,
// 1.17
block_amethyst = 1042,
block_raw_iron = 1043,
block_raw_gold = 1044,
// adding a gap in the numbering of walls to keep them all
// in one numbering block starting at 1792
// all blocks between 1792 and 2047 are considered walls

View File

@@ -31,7 +31,7 @@
// increment this value if you've made a change to the c extension
// and want to force users to rebuild
#define OVERVIEWER_EXTENSION_VERSION 99
#define OVERVIEWER_EXTENSION_VERSION 100
#include <stdbool.h>
#include <stdint.h>

View File

@@ -5917,3 +5917,7 @@ block(blockid=1035, top_image="assets/minecraft/textures/block/crying_obsidian.p
block(blockid=1036, top_image="assets/minecraft/textures/block/lodestone_top.png", side_image="assets/minecraft/textures/block/lodestone_side.png")
block(blockid=1037, top_image="assets/minecraft/textures/block/respawn_anchor_top.png", side_image="assets/minecraft/textures/block/respawn_anchor_side1.png")
block(blockid=1041, top_image="assets/minecraft/textures/block/quartz_bricks.png")
block(blockid=1042, top_image="assets/minecraft/textures/block/amethyst_block.png")
block(blockid=1043, top_image="assets/minecraft/textures/block/raw_iron_block.png")
block(blockid=1044, top_image="assets/minecraft/textures/block/raw_gold_block.png")

View File

@@ -770,6 +770,11 @@ class RegionSet(object):
# quartz bricks
'minecraft:quartz_bricks': (1041, 0),
# 1.17 blocks go here
'minecraft:amethyst_block': (1042, 0),
'minecraft:raw_iron_block': (1043, 0),
'minecraft:raw_gold_block': (1044, 0),
# New blocks
'minecraft:carved_pumpkin': (11300, 0),
'minecraft:spruce_pressure_plate': (11301, 0),