Skip to content

Commit

Permalink
1.20.4
Browse files Browse the repository at this point in the history
  • Loading branch information
TacoMonkey11 committed Dec 29, 2023
1 parent 0a70761 commit 6287606
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ maven_group = com.github.reviversmc
archives_base_name = modern-glass-doors

# Mod Dependencies
minecraft_version = 1.20.2
minecraft_version = 1.20.4
fabric_loader_version = 0.15.3
fabric_api_version = 0.91.2+1.20.2
yarn_mappings = 1.20.2+build.4
fabric_api_version = 0.92.0+1.20.4
yarn_mappings = 1.20.4+build.3

# Dev-Env Mods
use_third_party_mods = true
modmenu_version = 8.0.1
sodium_version = mc1.20.2-0.5.5
lithium_version = mc1.20.2-0.12.0
ferritecore_version = 6.0.1-fabric
modmenu_version = 9.0.0
sodium_version = mc1.20.3-0.5.5
lithium_version = mc1.20.4-0.12.1
ferritecore_version = 6.0.3-fabric
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public static BlockState copyState(BlockState state) {
public final DoorBlock parentDoorType;

GlassDoorBlock(MaterialCategory materialCategory, DoorBlock parentDoorType) {
super(Block.Settings.copy(parentDoorType), parentDoorType.blockSetType);
super(parentDoorType.blockSetType, Block.Settings.copy(parentDoorType));

this.materialCategory = materialCategory;
this.parentDoorType = (DoorBlock) parentDoorType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public static BlockState copyState(BlockState state) {
private final TrapdoorBlock parentTrapdoorType;

GlassTrapdoorBlock(MaterialCategory materialCategory, TrapdoorBlock parentTrapdoorType) {
super(Block.Settings.copy(parentTrapdoorType), parentTrapdoorType.blockSetType);
super(parentTrapdoorType.blockSetType, Block.Settings.copy(parentTrapdoorType));

this.materialCategory = materialCategory;
this.parentTrapdoorType = (TrapdoorBlock) parentTrapdoorType;
Expand Down

0 comments on commit 6287606

Please sign in to comment.