Editor fixes

This commit is contained in:
Anuken
2022-01-19 22:23:50 -05:00
parent 45178046d0
commit 698e89e796
5 changed files with 29 additions and 11 deletions

View File

@@ -38,7 +38,6 @@ public class SteamVent extends Floor{
public SteamVent(String name){
super(name);
variants = 2;
inEditor = false;
}
@Override

View File

@@ -1,5 +1,6 @@
package mindustry.world.blocks.environment;
import arc.*;
import mindustry.type.*;
/**An overlay ore that draws on top of walls. */
@@ -13,4 +14,11 @@ public class WallOreBlock extends OreBlock{
public WallOreBlock(String name){
super(name);
}
@Override
public void init(){
super.init();
this.localizedName = this.localizedName + " " + Core.bundle.get("wallore");
}
}