Skip to content

Commit

Permalink
Add missing FabricBlockSettings method (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
dima-dencep committed Jul 22, 2024
1 parent 430aa20 commit a6e2a81
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,18 @@ protected FabricBlockSettings(BlockBehaviour.Properties settings) {
* @deprecated replace with {@link BlockBehaviour.Properties#of()}
*/
@Deprecated
public static FabricBlockSettings of() {
public static FabricBlockSettings create() {
return new FabricBlockSettings();
}

/**
* @deprecated replace with {@link BlockBehaviour.Properties#of()}
*/
@Deprecated
public static FabricBlockSettings of() {
return create();
}

/**
* @deprecated replace with {@link BlockBehaviour.Properties#ofFullCopy(BlockBehaviour)}
*/
Expand Down

0 comments on commit a6e2a81

Please sign in to comment.