Intern created pathes

This commit is contained in:
DBotThePony 2024-08-10 19:07:01 +07:00
parent a17bb2a732
commit 7346883f01
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -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()
}
}