Fixed custom recipe gui not displaying item on recipe.

also version bump (1.6.10)
This commit is contained in:
alexcrea 2024-11-21 15:23:20 +01:00
parent 73ec340e34
commit f5d607212d
No known key found for this signature in database
GPG key ID: 43FD265DB0DBF91F
4 changed files with 15 additions and 11 deletions

View file

@ -15,7 +15,7 @@ plugins {
}
group = "xyz.alexcrea"
version = "1.6.9"
version = "1.6.10"
repositories {
// EcoEnchants

View file

@ -4,3 +4,5 @@ kotlin.code.style=official
signing.gnupg.executable=gpg
signing.gnupg.useLegacyGpg=true
signing.gnupg.keyName=B0DBF91F
kotlin.daemon.jvmargs=-Xmx8G

View file

@ -20,7 +20,6 @@ import java.util.Collection;
public class CustomRecipeConfigGui extends MappedGuiListConfigGui<AnvilCustomRecipe,
MappedGuiListConfigGui.LazyElement<CustomRecipeSubSettingGui>> {
private static CustomRecipeConfigGui INSTANCE = new CustomRecipeConfigGui();
@Nullable

View file

@ -107,6 +107,9 @@ public class CustomRecipeSubSettingGui extends MappedToListSubSettingGui {
AnvilCustomRecipe.Companion.getDEFAULT_RESULT_ITEM_CONFIG(),
"§7Set the result item of the custom craft",
"§7\u25A1 + \u25A1 = \u25A0");
// Now we update the items
updateLocal();
}
private ConfirmActionGui createDeleteGui() {