Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Micalhl committed Aug 18, 2022
1 parent b6c2589 commit 6cbaeab
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
16 changes: 9 additions & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = "me.arasple.mc.trhologram"
version = "2.4-pre28"
version = "2.4-pre29"
description = "Modern & Advanced Hologram-Plugin for Minecraft Servers"

taboolib {
Expand Down Expand Up @@ -38,7 +38,7 @@ taboolib {
}

classifier = null
version = "6.0.9-11"
version = "6.0.9-65"
}

repositories {
Expand All @@ -49,11 +49,13 @@ repositories {

dependencies {
compileOnly("org.jetbrains.kotlin:kotlin-stdlib")
compileOnly("ink.ptms.core:v11604:11604")
compileOnly("ink.ptms.core:v11600:11600")
compileOnly("ink.ptms.core:v11300:11300")
compileOnly("ink.ptms.core:v11200:11200")
compileOnly("ink.ptms.core:v10900:10900")
compileOnly("ink.ptms:nms-all:1.0.0")
compileOnly("ink.ptms.core:v11900:11900-minimize:mapped")
compileOnly("ink.ptms.core:v11900:11900-minimize:universal")
compileOnly("ink.ptms.core:v11800:11800-minimize:mapped")
compileOnly("ink.ptms.core:v11800:11800-minimize:universal")
compileOnly("ink.ptms.core:v11701:11701:mapped")
compileOnly("ink.ptms.core:v11701:11701:universal")
compileOnly("me.clip:placeholderapi:2.10.9")
compileOnly(fileTree("libs"))
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/me/arasple/mc/trhologram/util/Parser.kt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fun String.parseLocation(): Location {
}

fun Location.parseString(): String {
val world = world.name
val world = world?.name
val x = Coerce.format(x)
val y = Coerce.format(y)
val z = Coerce.format(z)
Expand Down

0 comments on commit 6cbaeab

Please sign in to comment.