Fixed black tile issue

This commit is contained in:
Anuken
2019-08-25 11:16:38 -04:00
parent fd973038bb
commit 5c6f2171f4
5 changed files with 36 additions and 11 deletions

View File

@@ -99,7 +99,7 @@ PackrConfig.Platform.values().each{ platform ->
new Packr().pack(config)
if(platform == PackrConfig.Platform.Linux64){
if(platform != PackrConfig.Platform.MacOS){
copy{
into "build/packr/output/jre/"
from "build/packr/output/desktop.jar"
@@ -123,6 +123,14 @@ PackrConfig.Platform.values().each{ platform ->
}
}
}
if((platform == PackrConfig.Platform.Windows64 || platform == PackrConfig.Platform.Windows32)){
copy{
from "build/packr/output/jre/bin/msvcr100.dll"
into "build/packr/output/"
rename("msvcr100.dll", "MSVCR100.dll")
}
}
}
task "zip${platform.toString()}"(type: Zip){