Tweak Crafting Slightly
This commit is contained in:
parent
344462707b
commit
724e057c85
@ -1,5 +1,8 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
**1.0.7**
|
||||||
|
* Tweak Crafting Slightly
|
||||||
|
|
||||||
**1.0.6**
|
**1.0.6**
|
||||||
* Tweak Advancements
|
* Tweak Advancements
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ org.gradle.jvmargs = -Xmx1G
|
|||||||
fabric_loader_version = 0.7.10+build.191
|
fabric_loader_version = 0.7.10+build.191
|
||||||
|
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
mod_version = 1.0.6
|
mod_version = 1.0.7
|
||||||
maven_group = com.thebrokenrail
|
maven_group = com.thebrokenrail
|
||||||
archives_base_name = reliccraft
|
archives_base_name = reliccraft
|
||||||
|
|
||||||
|
@ -56,7 +56,7 @@ public class RevealRelicRecipe extends SpecialCraftingRecipe {
|
|||||||
if (!itemStack2.isEmpty()) {
|
if (!itemStack2.isEmpty()) {
|
||||||
Item item = itemStack2.getItem();
|
Item item = itemStack2.getItem();
|
||||||
if (item instanceof RelicItem) {
|
if (item instanceof RelicItem) {
|
||||||
if (!itemStack.isEmpty()) {
|
if (!itemStack.isEmpty() || (itemStack2.getTag() != null && itemStack2.getTag().getByte(RelicItem.RELIC_REVEALED_KEY) != 0)) {
|
||||||
return ItemStack.EMPTY;
|
return ItemStack.EMPTY;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user