Skip to content

Commit

Permalink
fix frame sound
Browse files Browse the repository at this point in the history
  • Loading branch information
bl4ckscor3 committed Dec 22, 2021
1 parent c067205 commit ae2257e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- Fix: Crash when opening the Password-protected Furnace
- Fix: Log error when changing "solidifyField" option in an Inventory Scanner that's not linked to another one
- Fix: Sound for converting chests/furnaces to their password-protected variants does not play
- Fix: Frame has stone sounds instead of metal sounds

--------------------------Changelog for v1.9.0.1 of SecurityCraft--------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/geforcemods/securitycraft/SCContent.java
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ public class SCContent {
@HasManualPage
@OwnableBE
@RegisterItemBlock
public static final RegistryObject<Block> FRAME = BLOCKS.register("keypad_frame", () -> new FrameBlock(prop()));
public static final RegistryObject<Block> FRAME = BLOCKS.register("keypad_frame", () -> new FrameBlock(prop().sound(SoundType.METAL)));
@HasManualPage
@RegisterItemBlock(SCItemGroup.EXPLOSIVES)
public static final RegistryObject<Block> IMS = BLOCKS.register("ims", () -> new IMSBlock(prop(Material.METAL, 0.7F).sound(SoundType.METAL)));
Expand Down

0 comments on commit ae2257e

Please sign in to comment.