Skip to content

Commit

Permalink
Fixed Cheese Maker using wrong soundset
Browse files Browse the repository at this point in the history
  • Loading branch information
JuniorWolfgamingDE committed Jul 1, 2024
1 parent a6c0fdc commit c3b52ea
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion assortedcuisine.mcreator
Original file line number Diff line number Diff line change
Expand Up @@ -2438,8 +2438,8 @@
"item.assortedcuisine.slurm_soda": "Slurm",
"item.assortedcuisine.bread_slice": "Bread Slice",
"item.assortedcuisine.cheese_music_disc.desc": "sisthek - CHEESE",
"item.assortedcuisine.hot_chocolate_milk": "Hot Chocolate Milk",
"item.assortedcuisine.cocoa_soda": "Cocoa Drink",
"item.assortedcuisine.hot_chocolate_milk": "Hot Chocolate Milk",
"item.assortedcuisine.golden_apple_soda": "Golden Apple Soda",
"advancements.cheese_music_disc_advancement.descr": "Acquire sisthek\u0027s CHEESE music disc by producing ridiculous amounts of cheese.",
"item.assortedcuisine.mr_cheese_item": "MrCheeseItem",
Expand Down
2 changes: 1 addition & 1 deletion elements/CheeseMaker.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
"isNotColidable": false,
"isCustomSoundType": false,
"soundOnStep": {
"value": "GROUND"
"value": "STONE"
},
"breakSound": {
"value": ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class CheeseMakerBlock extends Block implements EntityBlock {
public static final IntegerProperty BLOCKSTATE = IntegerProperty.create("blockstate", 0, 2);

public CheeseMakerBlock() {
super(BlockBehaviour.Properties.of().instrument(NoteBlockInstrument.BASEDRUM).sound(SoundType.GRAVEL).strength(1f, 10f).lightLevel(s -> (new Object() {
super(BlockBehaviour.Properties.of().instrument(NoteBlockInstrument.BASEDRUM).sound(SoundType.STONE).strength(1f, 10f).lightLevel(s -> (new Object() {
public int getLightLevel() {
if (s.getValue(BLOCKSTATE) == 1)
return 0;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/assets/assortedcuisine/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"item.assortedcuisine.slurm_soda": "Slurm",
"item.assortedcuisine.bread_slice": "Bread Slice",
"item.assortedcuisine.cheese_music_disc.desc": "sisthek - CHEESE",
"item.assortedcuisine.hot_chocolate_milk": "Hot Chocolate Milk",
"item.assortedcuisine.cocoa_soda": "Cocoa Drink",
"item.assortedcuisine.hot_chocolate_milk": "Hot Chocolate Milk",
"item.assortedcuisine.golden_apple_soda": "Golden Apple Soda",
"advancements.cheese_music_disc_advancement.descr": "Acquire sisthek\u0027s CHEESE music disc by producing ridiculous amounts of cheese.",
"item.assortedcuisine.mr_cheese_item": "MrCheeseItem",
Expand Down

0 comments on commit c3b52ea

Please sign in to comment.