Skip to content

Commit

Permalink
fix: fix issue with templates
Browse files Browse the repository at this point in the history
  • Loading branch information
AverageGithub committed Feb 17, 2024
1 parent 05c131c commit b06b4e7
Showing 1 changed file with 33 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -238,10 +238,16 @@ private void updateGui(Inventory inv) {
}

if (template == null || template.getType().isAir()) {
if (!needNetheriteTemplate) {
template = new ItemStack(Material.AIR);
}

if (!needNetheriteTemplate && !hasTemplate(addition, base, template)) {
if (template.getType().isAir()) {
template = new ItemStack(Material.NETHERITE_UPGRADE_SMITHING_TEMPLATE);
} else {
template = new ItemStack(Material.AIR);
} else if (base.getType().isAir()) {
base = new ItemStack(Material.NETHERITE_UPGRADE_SMITHING_TEMPLATE);
} else if (addition.getType().isAir()) {
addition = new ItemStack(Material.NETHERITE_UPGRADE_SMITHING_TEMPLATE);;
}
}

Expand Down Expand Up @@ -275,6 +281,30 @@ private boolean checkRecipes(Inventory inv, ItemStack finalTemplate, ItemStack f
return successful;
}

private boolean hasTemplate(ItemStack item1, ItemStack item2, ItemStack item3) {
if (isTemplate(item1)) {
return true;
} else if (isTemplate(item2)) {
return true;
} else {
return isTemplate(item3);
}
}

private boolean isTemplate(ItemStack item) {
return switch (item.getType()) {
case COAST_ARMOR_TRIM_SMITHING_TEMPLATE, SHAPER_ARMOR_TRIM_SMITHING_TEMPLATE,
DUNE_ARMOR_TRIM_SMITHING_TEMPLATE, EYE_ARMOR_TRIM_SMITHING_TEMPLATE,
SENTRY_ARMOR_TRIM_SMITHING_TEMPLATE, HOST_ARMOR_TRIM_SMITHING_TEMPLATE,
RAISER_ARMOR_TRIM_SMITHING_TEMPLATE, SILENCE_ARMOR_TRIM_SMITHING_TEMPLATE,
RIB_ARMOR_TRIM_SMITHING_TEMPLATE, SNOUT_ARMOR_TRIM_SMITHING_TEMPLATE,
SPIRE_ARMOR_TRIM_SMITHING_TEMPLATE, TIDE_ARMOR_TRIM_SMITHING_TEMPLATE,
VEX_ARMOR_TRIM_SMITHING_TEMPLATE, WARD_ARMOR_TRIM_SMITHING_TEMPLATE,
WAYFINDER_ARMOR_TRIM_SMITHING_TEMPLATE -> true;
default -> false;
};
}

private boolean checkRecipe(Inventory inventory, ItemStack finalTemplate, ItemStack finalBase, ItemStack finalAddition) {
Iterator<Recipe> recipeIterator = Bukkit.getServer().recipeIterator();
while (recipeIterator.hasNext()) {
Expand Down

0 comments on commit b06b4e7

Please sign in to comment.