Skip to content

Commit 7880587

Browse files
committed
Fixed an issue with MCBlockBundle
- Added back translations
1 parent 2d1fc84 commit 7880587

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/hugman/dawn/api/creator/bundle/block/MCBlockBundle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class MCBlockBundle extends Bundle {
2020
*/
2121
public MCBlockBundle(BlockCreator.Builder builder, BlockTemplate template) {
2222
for(DyeColor color : DyeColor.values()) {
23-
map.put(color, put(builder.copy().applyTemplate(template).name(color.getName() + "_" + builder.getName()).build()));
23+
map.put(color, put(builder.copy().name(color.getName() + "_" + builder.getName()).applyTemplate(template).build()));
2424
}
2525
}
2626

0 commit comments

Comments
 (0)