Merge branch 'master' of https://github.com/Anuken/Mindustry into 7.0-features

This commit is contained in:
Anuken
2021-10-15 17:10:30 -04:00
4 changed files with 10 additions and 11 deletions

View File

@@ -3,12 +3,15 @@ package mindustry.world.blocks.environment;
import mindustry.content.*;
import mindustry.world.*;
/** Empty floor is *not* equivalent to air. Unlike air, it is solid, and still draws neighboring tile edges. */
public class EmptyFloor extends Floor{
public EmptyFloor(String name){
super(name);
variants = 0;
canShadow = false;
placeableOn = false;
solid = true;
}
@Override