Hide construct/legacy blocks

This commit is contained in:
Anuken
2021-07-16 12:37:31 -04:00
parent 84cd87370f
commit 07ba378095
3 changed files with 3 additions and 1 deletions

View File

@@ -41,6 +41,7 @@ public class ConstructBlock extends Block{
health = 20;
consumesTap = true;
solidifes = true;
inEditor = false;
consBlocks[size - 1] = this;
sync = true;
}

View File

@@ -7,6 +7,7 @@ public class LegacyBlock extends Block{
public LegacyBlock(String name){
super(name);
inEditor = false;
}
/** Removes this block from the world, or replaces it with something else. */