Skip to content

Commit

Permalink
change: return self
Browse files Browse the repository at this point in the history
  • Loading branch information
Zepalesque committed May 26, 2024
1 parent 1d255d5 commit dcac85f
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ public abstract class AbstractStoneSet implements BlockSet {
protected abstract DeferredBlock<?> slabBlock(DeferredRegister.Blocks registry, String id, MapColor color, SoundType soundType);
public abstract DeferredBlock<?> slabBlock();

protected abstract void craftsInto(AbstractStoneSet set, CraftingMatrix shape);
protected abstract AbstractStoneSet craftsInto(AbstractStoneSet set, CraftingMatrix shape);

protected abstract void craftsInto(Supplier<Block> block, CraftingMatrix shape);
protected abstract AbstractStoneSet craftsInto(Supplier<Block> block, CraftingMatrix shape);

protected abstract void stonecutInto(AbstractStoneSet set);
protected abstract AbstractStoneSet stonecutInto(AbstractStoneSet set);

protected abstract void stonecutInto(Supplier<Block> block);
protected abstract AbstractStoneSet stonecutInto(Supplier<Block> block);

protected abstract void smeltsInto(AbstractStoneSet set, float experience);
protected abstract AbstractStoneSet smeltsInto(AbstractStoneSet set, float experience);

protected abstract void smeltsInto(Supplier<Block> block, float experience);
protected abstract AbstractStoneSet smeltsInto(Supplier<Block> block, float experience);

}

0 comments on commit dcac85f

Please sign in to comment.