Skip to content

Commit

Permalink
Merge pull request #24 from YufiriaMazenta/feature-condition-editor
Browse files Browse the repository at this point in the history
更新CrypticLib版本0.9.5
  • Loading branch information
YufiriaMazenta authored Dec 20, 2023
2 parents 26c9413 + 3c2b9a9 commit be929d0
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
Expand Up @@ -40,7 +40,7 @@ dependencies {
compileOnly("io.lumine:Mythic-Dist:5.3.5")
compileOnly("io.lumine:MythicLib-dist:1.6.2-SNAPSHOT")
compileOnly("net.Indyuce:MMOItems-API:6.9.5-SNAPSHOT")
implementation("com.crypticlib:CrypticLib:0.9.3")
implementation("com.crypticlib:CrypticLib:0.9.5")
}

group = "com.github.yufiriamazenta"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ private void loadItems() {
private void loadItem(String itemKey, ConfigurationSection config) {
try {
NbtItem item = ItemFactory.item(config);
ItemStack bukkitItem = item.saveNbtToBukkit();
ItemStack bukkitItem = item.saveNbtToItem();
itemMap.put(itemKey, bukkitItem);
} catch (Exception e) {
LangUtil.info(Languages.LOAD_ITEM_LOAD_EXCEPTION, CollectionsUtil.newStringHashMap("<item_name>", itemKey));
Expand Down

0 comments on commit be929d0

Please sign in to comment.