Skip to content

Commit

Permalink
Re-fix BlockDeepslateRedstoneOre not changing back
Browse files Browse the repository at this point in the history
Third time's the charm right? For some reason the last time I fixed this has completely disappeared from GitHub! I KNOW I fixed this, so why did the change go away!?
  • Loading branch information
Roadhog360 committed Dec 3, 2023
1 parent 68f33b5 commit 7abb478
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ public BlockDeepslateRedstoneOre(boolean lit) {
if (lit) {
setCreativeTab(null);
setBlockName(Utils.getUnlocalisedName("deepslate_lit_redstone_ore"));
this.isLit = lit;
setTickRandomly(true);
this.isLit = true;
}
}

Expand Down

0 comments on commit 7abb478

Please sign in to comment.