Skip to content

Commit

Permalink
removed unknown recipe warning from log (all loaders)
Browse files Browse the repository at this point in the history
  • Loading branch information
cech12 committed Jul 8, 2024
1 parent b189f0e commit 57b0cc6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Forge Recommended Versioning](https://mcforge.readthedocs.io/en/latest/conventions/versioning/).

## [1.21-4.0.0.1] - 2024-07-08
### Fixed
- removed unknown recipe warning from log (all loaders)

## [1.21-4.0.0.0] - 2024-07-07
### Changed
- updated to Minecraft 1.21 (Fabric 0.100.3+1.21, Neoforge 21.0.42-beta, Forge 51.0.18)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.item.crafting.AbstractCookingRecipe;
import net.minecraft.world.item.crafting.CookingBookCategory;
import net.minecraft.world.item.crafting.SimpleCookingSerializer;
import net.minecraft.world.item.crafting.RecipeSerializer;
import net.minecraft.world.item.crafting.Ingredient;
import net.minecraft.world.item.crafting.RecipeSerializer;
import net.minecraft.world.item.crafting.SimpleCookingSerializer;

import javax.annotation.Nonnull;

Expand Down Expand Up @@ -36,4 +36,8 @@ public RecipeSerializer<?> getSerializer() {
return SERIALIZER;
}

@Override
public boolean isSpecial() {
return true;
}
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# Project
group=de.cech12.solarcooker
mod_version=4.0.0.0
mod_version=4.0.0.1
mod_id=solarcooker
mod_name=Solar Cooker
mod_author=Cech12
Expand Down

0 comments on commit 57b0cc6

Please sign in to comment.