We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03caa68 commit df88812Copy full SHA for df88812
pom.xml
@@ -14,7 +14,7 @@
14
15
<groupId>net.iamtakagi</groupId>
16
<artifactId>iroha</artifactId>
17
- <version>1.0.4</version>
+ <version>1.0.5</version>
18
19
<properties>
20
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
src/main/java/net/iamtakagi/iroha/InventoryUtil.java
@@ -146,6 +146,7 @@ public static ItemStack deserializeItemStack(String in) {
146
}
147
case "lac": {
148
if (meta != null) {
149
+ meta = (LeatherArmorMeta) item.getItemMeta();
150
((LeatherArmorMeta) meta).setColor(Color.fromRGB(Integer.parseInt(itemAttribute[1])));
151
break;
152
0 commit comments