Skip to content

Commit

Permalink
Merge pull request #329 from FTBTeam/bugfix/1.21/block-colors
Browse files Browse the repository at this point in the history
 [1.21] Fix Block Colors
  • Loading branch information
desht authored Nov 5, 2024
2 parents fc9a834 + 6f65a2f commit b70dbe9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ protected void apply(JsonObject object, ResourceManager resourceManager, Profile
|| block instanceof FireBlock
|| block instanceof ButtonBlock
|| block instanceof TorchBlock && !(block instanceof RedstoneTorchBlock)
|| block instanceof StainedGlassPaneBlock
) {
BLOCK_ID_TO_COLOR_MAP.put(id, BlockColors.IGNORED);
} else if (block instanceof GrassBlock) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,11 @@
"lily_pad": "#208030",
"dead_bush": "#A89061",
"glass": "#CCE5E4",
"cherry_leaves": "#b390a4"
"cherry_leaves": "#b390a4",
"glass_pane": "ignored",
"comparator": "ignored",
"repeater": "ignored",
"end_rod": "ignored",
"chain": "ignored",
"lever": "ignored"
}

0 comments on commit b70dbe9

Please sign in to comment.