1.0.7
RelicCraft/pipeline/head This commit looks good Details

Tweak Crafting Slightly
This commit is contained in:
TheBrokenRail 2020-04-07 15:16:59 -04:00
parent 344462707b
commit 724e057c85
3 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
# Changelog
**1.0.7**
* Tweak Crafting Slightly
**1.0.6**
* Tweak Advancements

View File

@ -10,7 +10,7 @@ org.gradle.jvmargs = -Xmx1G
fabric_loader_version = 0.7.10+build.191
# Mod Properties
mod_version = 1.0.6
mod_version = 1.0.7
maven_group = com.thebrokenrail
archives_base_name = reliccraft

View File

@ -56,7 +56,7 @@ public class RevealRelicRecipe extends SpecialCraftingRecipe {
if (!itemStack2.isEmpty()) {
Item item = itemStack2.getItem();
if (item instanceof RelicItem) {
if (!itemStack.isEmpty()) {
if (!itemStack.isEmpty() || (itemStack2.getTag() != null && itemStack2.getTag().getByte(RelicItem.RELIC_REVEALED_KEY) != 0)) {
return ItemStack.EMPTY;
}