Skip to content

dependency: Update dependency dev.rollczi:liteskullapi to v2 #1028

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ object Versions {
const val HIKARI_CP = "6.3.2"

const val LITE_COMMANDS = "3.10.2"
const val LITE_SKULL_API = "1.3.0"
const val LITE_SKULL_API = "2.0.0"

const val GUAVA = "33.4.8-jre"
const val GSON = "2.13.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class SkullCommand {
@Execute
@DescriptionDocs(description = "Gives you a skull of player", arguments = "<player>")
void execute(@Context Player sender, @Arg(SkullNicknameArgument.KEY) String name) {
this.skullAPI.acceptSyncSkullData(name, skull -> {
this.skullAPI.acceptSkullData(name, skull -> {
ItemStack namedSkull = ItemBuilder.skull()
.name(Component.text(name))
.texture(skull.getValue())
Expand Down