Skip to content

Commit

Permalink
[1.6.2]修复获取mmoitems物品名字时缺少:的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
YufiriaMazenta committed Dec 13, 2023
1 parent 03314e5 commit 152c895
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import java.text.SimpleDateFormat
version = "1.6.2-dev1"
version = "1.6.2"

plugins {
`java-library`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public enum MMOItemsItemProvider implements ItemProvider {
if (ItemUtil.isAir(item)) {
return null;
}
return type + id + " " + (itemStack.getAmount() / item.getAmount());
return itemKey + " " + (itemStack.getAmount() / item.getAmount());
}

}
Expand Down

0 comments on commit 152c895

Please sign in to comment.