Fixed #8838
This commit is contained in:
@@ -29,8 +29,8 @@ task deploy(type: Copy){
|
|||||||
}
|
}
|
||||||
|
|
||||||
android{
|
android{
|
||||||
buildToolsVersion '31.0.0'
|
buildToolsVersion '33.0.2'
|
||||||
compileSdkVersion 31
|
compileSdkVersion 33
|
||||||
sourceSets{
|
sourceSets{
|
||||||
main{
|
main{
|
||||||
manifest.srcFile 'AndroidManifest.xml'
|
manifest.srcFile 'AndroidManifest.xml'
|
||||||
@@ -56,7 +56,7 @@ android{
|
|||||||
|
|
||||||
applicationId "io.anuke.mindustry"
|
applicationId "io.anuke.mindustry"
|
||||||
minSdkVersion 14
|
minSdkVersion 14
|
||||||
targetSdkVersion 31
|
targetSdkVersion 33
|
||||||
|
|
||||||
versionName versionNameResult
|
versionName versionNameResult
|
||||||
versionCode = vcode
|
versionCode = vcode
|
||||||
|
|||||||
@@ -1325,7 +1325,9 @@ public class LExecutor{
|
|||||||
if((b instanceof OverlayFloor || b == Blocks.air) && tile.overlay() != b) tile.setOverlayNet(b);
|
if((b instanceof OverlayFloor || b == Blocks.air) && tile.overlay() != b) tile.setOverlayNet(b);
|
||||||
}
|
}
|
||||||
case floor -> {
|
case floor -> {
|
||||||
if(b instanceof Floor f && tile.floor() != f && !f.isOverlay()) tile.setFloorNet(f);
|
if(b instanceof Floor f && tile.floor() != f && !f.isOverlay() && !f.isAir()){
|
||||||
|
tile.setFloorNet(f);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
case block -> {
|
case block -> {
|
||||||
if(!b.isFloor() || b == Blocks.air){
|
if(!b.isFloor() || b == Blocks.air){
|
||||||
|
|||||||
Reference in New Issue
Block a user