Skip to content

Commit

Permalink
Fix texture and model errors
Browse files Browse the repository at this point in the history
Fix #1129
  • Loading branch information
bziemons committed May 4, 2021
1 parent 7db9c4b commit 658ab38
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 18 deletions.
10 changes: 7 additions & 3 deletions resources/assets/logisticspipes/blockstates/pipe.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"variants": {
"normal": { "model": "logisticspipes:pipe" }
}
"variants": {
"normal": [
{
"model": "logisticspipes:pipe"
}
]
}
}
31 changes: 23 additions & 8 deletions resources/assets/logisticspipes/blockstates/solid_block.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,25 @@
{
"forge_marker": 1,
"defaults": {
"custom": { "flip-v": true },
"model": "logisticspipes:solidblock.internal"
},
"variants": {
"normal": {}
}
"forge_marker": 1,
"defaults": {
"custom": {
"flip-v": true
},
"model": "logisticspipes:solid_block"
},
"variants": {
"block_sub_type": {
"0": {},
"1": {},
"2": {},
"3": {},
"4": {},
"5": {},
"6": {},
"7": {},
"8": {},
"9": {},
"10": {},
"11": {}
}
}
}
10 changes: 7 additions & 3 deletions resources/assets/logisticspipes/blockstates/sub_multiblock.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"variants": {
"normal": { "model": "logisticspipes:sub_multiblock" }
}
"variants": {
"normal": [
{
"model": "logisticspipes:sub_multiblock"
}
]
}
}
8 changes: 4 additions & 4 deletions resources/assets/logisticspipes/models/block/solid_block.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "logisticspipes:blocks/solid_block"
}
"parent": "block/cube_all",
"textures": {
"all": "logisticspipes:solid_block/frame"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "minecraft:missingno"
}
}

0 comments on commit 658ab38

Please sign in to comment.