Skip to content

Commit

Permalink
Updated for 1.21.4
Browse files Browse the repository at this point in the history
  • Loading branch information
AerWyn81 committed Jan 12, 2025
1 parent fa10dae commit 13c14e7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
3 changes: 1 addition & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id("java")
}

version = "2.6.14"
version = "2.6.15"

allprojects {
repositories {
Expand All @@ -14,6 +14,5 @@ allprojects {
maven("https://repo.extendedclip.com/content/repositories/placeholderapi/")
maven("https://repo.fancyplugins.de/releases")
maven("https://jitpack.io")
maven("https://ci.codemc.io/job/Tr7zw/job/Item-NBT-API/")
}
}
3 changes: 1 addition & 2 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ dependencies {
implementation("redis.clients:jedis:5.1.3")
implementation("com.zaxxer:HikariCP:5.1.0")
implementation("org.apache.commons:commons-lang3:3.12.0")
//implementation("de.tr7zw:item-nbt-api:2.14.0")
implementation("de.tr7zw:item-nbt-api:2.14.1-SNAPSHOT")
implementation("de.tr7zw:item-nbt-api:2.14.1")
implementation("net.kyori:adventure-api:4.17.0")
implementation("net.kyori:adventure-platform-bukkit:4.3.3")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,12 @@ public void loadHeadsHDB() {
.map(h -> (HBHeadHDB) h)
.filter(h -> !h.isLoaded())
.forEach(h -> {
HeadUtils.createHead(h, headDatabaseAPI.getBase64(h.getId()));
h.setLoaded(true);
HeadBlocks.log.sendMessage(MessageUtils.colorize("&aLoaded HeadDatabase head id &e" + h.getId() + "."));
var texture = headDatabaseAPI.getBase64(h.getId());
if (!texture.isEmpty()) {
HeadUtils.createHead(h, texture);
h.setLoaded(true);
HeadBlocks.log.sendMessage(MessageUtils.colorize("&aLoaded HeadDatabase head id &e" + h.getId() + "."));
}
});
}
}

0 comments on commit 13c14e7

Please sign in to comment.