-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #803 from Hunter19823/patch/fabric_shapeless_nbt_r…
…ecipe_result Fixed Shapeless Recipes ignoring output recipe NBT
- Loading branch information
Showing
2 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
fabric/src/main/java/dev/latvian/mods/kubejs/core/mixin/fabric/ShapedRecipeMixin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
package dev.latvian.mods.kubejs.core.mixin.fabric; | ||
|
||
import com.google.gson.JsonObject; | ||
import com.google.gson.JsonSyntaxException; | ||
import com.mojang.brigadier.exceptions.CommandSyntaxException; | ||
import dev.latvian.mods.rhino.mod.util.NBTUtils; | ||
import net.minecraft.nbt.CompoundTag; | ||
import net.minecraft.nbt.TagParser; | ||
import net.minecraft.util.GsonHelper; | ||
import net.minecraft.world.item.ItemStack; | ||
import org.spongepowered.asm.mixin.Mixin; | ||
import org.spongepowered.asm.mixin.injection.At; | ||
import org.spongepowered.asm.mixin.injection.Inject; | ||
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; | ||
|
||
@Mixin(net.minecraft.world.item.crafting.ShapedRecipe.class) | ||
public class ShapedRecipeMixin { | ||
@Inject( | ||
method = "itemStackFromJson", | ||
at = @At( | ||
value = "RETURN", | ||
remap = false | ||
), | ||
cancellable = false | ||
) | ||
private static void itemStackFromJson(JsonObject jsonObject, CallbackInfoReturnable<ItemStack> cir) { | ||
if(cir.getReturnValue() == null || cir.getReturnValue() == ItemStack.EMPTY) { | ||
return; | ||
} | ||
|
||
if(jsonObject.has("nbt")) { | ||
var json = jsonObject.get("nbt"); | ||
// Process null | ||
if (json == null || json.isJsonNull()) { | ||
return; | ||
} | ||
|
||
try { | ||
CompoundTag tag = null; | ||
if (json.isJsonObject()) { | ||
// We use a normal .toString() to convert the json to string, and read it as SNBT. | ||
// Using DynamicOps would mess with the type of integers and cause things like damage comparisons to fail... | ||
tag = TagParser.parseTag(json.toString()); | ||
} else { | ||
// Assume it's a string representation of the NBT | ||
tag = TagParser.parseTag(GsonHelper.convertToString(json, "nbt")); | ||
} | ||
cir.getReturnValue().getOrCreateTag().merge(tag); | ||
} catch (CommandSyntaxException commandSyntaxException) { | ||
throw new JsonSyntaxException("Invalid nbt tag: " + commandSyntaxException.getMessage()); | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters