Skip to content

Commit

Permalink
Fix items + bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Goldorion committed Mar 15, 2024
1 parent 52ae313 commit f663e7c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelogs:

## 1.9.14
* [Bugfix] Items could not be registered and could cause a build error

## 1.9.13
* [#449] Increased the number of possible elements for blocks, items, potions and potion effects in a same workspace
* Note: This improvement doesn't fix for good the "Code too large" error, but it should give you some more space for ideas.
Expand Down
2 changes: 1 addition & 1 deletion src/fabric-1.20.1/templates/elementinits/items.java.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public class ${JavaModName}Items {
);
</#list>
<#elseif item.getModElement().getTypeString() == "tool" && item.toolType == "Shield">
registerBlockingProperty(${item.getModElement().getRegistryNameUpper());
registerBlockingProperty(${item.getModElement().getRegistryNameUpper()});
</#if>
</#list>
</#if>
Expand Down
2 changes: 1 addition & 1 deletion src/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"weight": 11,
"info": {
"name": "Minecraft Fabric 1.20.1 Generator",
"version": "1.9.13",
"version": "1.9.14",
"description": "A Fabric generator",
"author": "Goldorion",
"credits": "Thank you to all contributors and supporters on Ko-fi",
Expand Down
4 changes: 3 additions & 1 deletion update.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"generator-fabric-1.20.1": {
"latest": "1.9.13",
"latest": "1.9.14",
"changes": [
"[Bugfix] Items could not be registered and could cause a build error",
"1.9.13:",
"[#449] Increased the number of possible elements for blocks, items, potions and potion effects in a same workspace",
"Note: This improvement doesn't fix for good the `Code too large` error, but it should give you some more space for ideas.",
"[Bugfix #506] Using a custom potion item caused a build error ",
Expand Down

0 comments on commit f663e7c

Please sign in to comment.