mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-31 18:04:21 +07:00
Fix setblock block not accepting @air (#7160)
This commit is contained in:
parent
4bc0ce9338
commit
29085b95b7
@ -1292,7 +1292,7 @@ public class LExecutor{
|
||||
if(b instanceof Floor f && tile.floor() != f && !f.isOverlay()) tile.setFloorNet(f);
|
||||
}
|
||||
case block -> {
|
||||
if(!b.isFloor()){
|
||||
if(!b.isFloor() || b == Blocks.air){
|
||||
Team t = exec.team(team);
|
||||
if(t == null) t = Team.derelict;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user