diff --git a/src/main/kotlin/ru/dbotthepony/kstarbound/util/AssetPathStack.kt b/src/main/kotlin/ru/dbotthepony/kstarbound/util/AssetPathStack.kt index 24ad1f54..cd96c13d 100644 --- a/src/main/kotlin/ru/dbotthepony/kstarbound/util/AssetPathStack.kt +++ b/src/main/kotlin/ru/dbotthepony/kstarbound/util/AssetPathStack.kt @@ -58,6 +58,6 @@ object AssetPathStack { if (path.isNotEmpty() && path[0] == '/') return path - return if (base.endsWith('/')) "$base$path" else "$base/$path" + return if (base.endsWith('/')) "$base$path".sbIntern() else "$base/$path".sbIntern() } }