Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
GlodBlock committed May 10, 2024
1 parent 1a81db6 commit 125ee17
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ yarn_mappings=1.20.1+build.10
loader_version=0.14.21

# Mod Properties
mod_version=1.20-1.0.0-fabric
mod_version=1.20-1.0.1-fabric
maven_group=com.github.glodblock.extendedae
archives_base_name=ExtendedAE

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,12 @@ public void addAdditionalDrops(Level level, BlockPos pos, List<ItemStack> drops)
}
}

@Override
public void clearContent() {
super.clearContent();
this.stuff.clear();
}

@Override
protected boolean readFromStream(FriendlyByteBuf data) {
var changed = super.readFromStream(data);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ public void addAdditionalDrops(Level level, BlockPos pos, List<ItemStack> drops)
}
}

@Override
public void clearContent() {
super.clearContent();
this.buffer.clear();
}

@Override
public void saveAdditional(CompoundTag data) {
super.saveAdditional(data);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,12 @@ public void addAdditionalDrops(Level level, BlockPos pos, List<ItemStack> drops)
}
}

@Override
public void clearContent() {
super.clearContent();
this.upgrades.clear();
}

@Override
public @NotNull AEColor getColor() {
return this.color;
Expand Down

0 comments on commit 125ee17

Please sign in to comment.