From 22517da4338e6ebda42924a2a05dbb37e7255ca3 Mon Sep 17 00:00:00 2001 From: paulevsGitch Date: Sun, 21 Mar 2021 06:44:50 +0300 Subject: [PATCH] Javadoc comment --- .../java/ru/betterend/mixin/common/RecipeManagerMixin.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/java/ru/betterend/mixin/common/RecipeManagerMixin.java b/src/main/java/ru/betterend/mixin/common/RecipeManagerMixin.java index 0528bc52..38497ec6 100644 --- a/src/main/java/ru/betterend/mixin/common/RecipeManagerMixin.java +++ b/src/main/java/ru/betterend/mixin/common/RecipeManagerMixin.java @@ -41,6 +41,12 @@ public class RecipeManagerMixin { return null; } + /** + * @author paulevs + * @reason Remove conflicts with vanilla tags + * Change recipe order to show mod recipes first, helps when block have vanilla tag + * (example - mod stone with vanilla tags and furnace from that stone) + */ @Overwrite public > Optional getFirstMatch(RecipeType type, C inventory, World world) { Collection> values = getAllOfType(type).values();