Allow all floors to replace each other

This commit is contained in:
Anuken
2024-01-22 16:14:14 -05:00
parent e9d95c2c2e
commit 59ea35c443
2 changed files with 4 additions and 4 deletions

View File

@@ -83,13 +83,13 @@ public class Floor extends Block{
protected TextureRegion edgeRegion;
public Floor(String name){
super(name);
variants = 3;
this(name, 3);
}
public Floor(String name, int variants){
super(name);
this.variants = variants;
placeableLiquid = true;
}
@Override