Skip to content

Commit

Permalink
improv: more improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Zepalesque committed Jun 20, 2024
1 parent 01c343c commit c09b473
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false
org.gradle.debug=false

mod_version=1.0.74
mod_version=1.0.75

# Mod
mod_id=zenith
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

public abstract class AbstractFlowerSet implements BlockSet {

protected abstract DeferredBlock<?> flower(DeferredRegister.Blocks registry, DeferredRegister.Items items, String id, Supplier<MobEffect> effect, int duration, OffsetType offset, SoundType sound);
protected abstract DeferredBlock<?> flower(DeferredRegister.Blocks registry, DeferredRegister.Items items, String id, Supplier<? extends Block> constructor);
public abstract DeferredBlock<?> flower();

protected abstract DeferredBlock<?> pot(DeferredRegister.Blocks registry, String id);
Expand All @@ -44,7 +44,5 @@ public abstract class AbstractFlowerSet implements BlockSet {

public abstract AbstractFlowerSet inflammable();

public abstract AbstractFlowerSet withProperties(UnaryOperator<Properties> properties);

public abstract AbstractFlowerSet withPotProperties(UnaryOperator<Properties> properties);
}

0 comments on commit c09b473

Please sign in to comment.