Skip to content

Commit

Permalink
bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Uraneptus committed Dec 26, 2024
1 parent ac96468 commit bb013d5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ repositories {
dependencies {
implementation "net.neoforged:neoforge:21.1.1"

//test mods
implementation "curse.maven:applied-energistics-2-223794:5610903"
implementation "curse.maven:storage-drawers-223852:5840297"
}

spotless {
Expand Down
4 changes: 2 additions & 2 deletions build.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Wed Aug 07 18:14:56 UTC 2024
neoforge_version=21.1.1
neoforge_version=21.1.90
mod_id=morphtool
dir_repo=./
build_number=39
Expand All @@ -8,4 +8,4 @@ version=1.8
mod_name=Morph-o-Tool
mc_version=1.21.1
neogradle.subsystems.parchment.minecraftVersion=1.21
neogradle.subsystems.parchment.mappingsVersion=2024.07.28
neogradle.subsystems.parchment.mappingsVersion=2024.11.17
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,8 @@ public ToolContentComponent(List<ItemStack> contents) {
this.items = contents;
}

private static DataResult<ToolContentComponent> checkAndCreate(List<ItemStack> p_381706_) {
try {
return DataResult.success(new ToolContentComponent(p_381706_));
} catch (ArithmeticException arithmeticexception) {
return DataResult.error(() -> "Excessive total bundle weight");
}
private static DataResult<ToolContentComponent> checkAndCreate(List<ItemStack> stacks) {
return DataResult.success(new ToolContentComponent(stacks));
}

public boolean isEmpty() {
Expand Down

0 comments on commit bb013d5

Please sign in to comment.