Skip to content

Commit

Permalink
Machinery blocks fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MegDuck committed Aug 4, 2023
1 parent 8ef3678 commit 355eda6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ loader_version=0.14.6
limlib_version=5.2.1
cardinal_components_version=4.1.4
# Mod Properties
mod_version = 0.6.9
mod_version = 0.6.10
maven_group = net.synchlabs

archives_base_name = the-backrooms
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public class BackroomsBlocks {
public static final Block HOTEL_CARPET = add("hotel_carpet",
new Block(FabricBlockSettings.copyOf(Blocks.WHITE_WOOL).mapColor(DyeColor.YELLOW)), ItemGroup.BUILDING_BLOCKS);

public static final Block MACHINERY_BLOCK = add("machinery_block",
public static final Block MACHINERY_BLOCK = add("machinery",
new MachineryBlock(FabricBlockSettings.copyOf(Blocks.STONE).mapColor(DyeColor.GRAY).sounds(BlockSoundGroup.TUFF)), ItemGroup.BUILDING_BLOCKS);
public static final Block ROOF_WIRING = add("roof_wiring", new RoofWiringBlock(FabricBlockSettings.copyOf(Blocks.STONE).mapColor(DyeColor.BROWN).strength(0F).noCollision().sounds(BlockSoundGroup.SMALL_DRIPLEAF).nonOpaque()), ItemGroup.BUILDING_BLOCKS);

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/assets/backrooms/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
"block.backrooms.colombina_mask": "Colombina Mask",
"block.backrooms.harlequin_mask": "Harlequin Mask",
"block.backrooms.sock_buskin_mask": "Sock Buskin Mask",
"block.backrooms.machinery_block": "Machinery Block",
"block.backrooms.machinery": "Machinery",
"block.backrooms.roof_wiring": "Roof Wiring",

"container.backrooms.crate": "Crate",
Expand Down

0 comments on commit 355eda6

Please sign in to comment.