Skip to content

Commit

Permalink
fix: fixes with blocksets
Browse files Browse the repository at this point in the history
  • Loading branch information
Zepalesque committed Jan 5, 2025
1 parent 6809b53 commit db609b5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -279,4 +279,9 @@ public Supplier<? extends ItemLike> addToCreativeTab(BuildCreativeModeTabContent
}
return null;
}

@Override
public String getID() {
return this.id;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -400,4 +400,9 @@ public Supplier<? extends ItemLike> addToCreativeTab(BuildCreativeModeTabContent
}
return null;
}

@Override
public String getID() {
return this.id;
}
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package net.zepalesque.redux.blockset.util;

import net.zepalesque.redux.blockset.flower.type.BaseFlowerSet;

public interface MutableLoreGeneration<T extends MutableLoreGeneration<T>> extends ReduxGeneration {
T withLore(String lore);
}

0 comments on commit db609b5

Please sign in to comment.