Fixed crafting order of decor bricks so polished is no longer a lonely boi (#1221)
This commit is contained in:
parent
fa59e7000a
commit
3fb708d2be
|
@ -23,7 +23,7 @@ public class ItemBlockEnum<E extends Enum<E> & IStringSerializable> extends Item
|
|||
|
||||
@Override
|
||||
public String getUnlocalizedName(ItemStack stack) {
|
||||
return getBlock().getUnlocalizedName() + getBlock().getTypes()[MathHelper.clamp(stack.getItemDamage(), 0, 15)].getName();
|
||||
return getBlock().getUnlocalizedName() + getBlock().getTypes()[MathHelper.clamp(stack.getItemDamage(), 0, getBlock().getTypes().length - 1)].getName();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
"key": {
|
||||
"s": {
|
||||
"item": "bloodmagic:demon_extras",
|
||||
"data": 1
|
||||
"data": 6
|
||||
}
|
||||
}
|
||||
}
|
|
@ -12,7 +12,7 @@
|
|||
"key": {
|
||||
"s": {
|
||||
"item": "bloodmagic:demon_extras",
|
||||
"data": 2
|
||||
"data": 7
|
||||
}
|
||||
}
|
||||
}
|
|
@ -12,7 +12,7 @@
|
|||
"key": {
|
||||
"s": {
|
||||
"item": "bloodmagic:demon_extras",
|
||||
"data": 0
|
||||
"data": 5
|
||||
}
|
||||
}
|
||||
}
|
|
@ -12,7 +12,7 @@
|
|||
"key": {
|
||||
"s": {
|
||||
"item": "bloodmagic:demon_extras",
|
||||
"data": 4
|
||||
"data": 9
|
||||
}
|
||||
}
|
||||
}
|
|
@ -12,7 +12,7 @@
|
|||
"key": {
|
||||
"s": {
|
||||
"item": "bloodmagic:demon_extras",
|
||||
"data": 3
|
||||
"data": 8
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"result": {
|
||||
"item": "bloodmagic:demon_extras",
|
||||
"data": 6,
|
||||
"count": 4
|
||||
},
|
||||
"pattern": [
|
||||
"ss",
|
||||
"ss"
|
||||
],
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"key": {
|
||||
"s": {
|
||||
"item": "bloodmagic:demon_extras",
|
||||
"data": 1
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"result": {
|
||||
"item": "bloodmagic:demon_extras",
|
||||
"data": 7,
|
||||
"count": 4
|
||||
},
|
||||
"pattern": [
|
||||
"ss",
|
||||
"ss"
|
||||
],
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"key": {
|
||||
"s": {
|
||||
"item": "bloodmagic:demon_extras",
|
||||
"data": 2
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"result": {
|
||||
"item": "bloodmagic:demon_extras",
|
||||
"data": 5,
|
||||
"count": 4
|
||||
},
|
||||
"pattern": [
|
||||
"ss",
|
||||
"ss"
|
||||
],
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"key": {
|
||||
"s": {
|
||||
"item": "bloodmagic:demon_extras",
|
||||
"data": 0
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"result": {
|
||||
"item": "bloodmagic:demon_extras",
|
||||
"data": 9,
|
||||
"count": 4
|
||||
},
|
||||
"pattern": [
|
||||
"ss",
|
||||
"ss"
|
||||
],
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"key": {
|
||||
"s": {
|
||||
"item": "bloodmagic:demon_extras",
|
||||
"data": 4
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"result": {
|
||||
"item": "bloodmagic:demon_extras",
|
||||
"data": 8,
|
||||
"count": 4
|
||||
},
|
||||
"pattern": [
|
||||
"ss",
|
||||
"ss"
|
||||
],
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"key": {
|
||||
"s": {
|
||||
"item": "bloodmagic:demon_extras",
|
||||
"data": 3
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue