Bruteforce crater emoji

This commit is contained in:
Patrick 'Quezler' Mounier
2020-01-27 18:40:40 +01:00
parent 9a289c83e6
commit 883a2a9b59
9 changed files with 855 additions and 821 deletions

View File

@@ -7,7 +7,7 @@ import mindustry.type.ItemType;
public class Items implements ContentList{
public static Item scrap, copper, lead, graphite, coal, titanium, thorium, silicon, plastanium, phasefabric, surgealloy,
sporePod, sand, blastCompound, pyratite, metaglass;
sporePod, sand, blastCompound, pyratite, metaglass, crater;
@Override
public void load(){
@@ -97,5 +97,10 @@ public class Items implements ContentList{
flammability = 1.4f;
explosiveness = 0.4f;
}};
// this is just to add the crater emoji, can't live without <3
crater = new Item("crater", Color.valueOf("989aa3")){
public boolean isHidden(){return true;}
};
}
}

View File

@@ -36,7 +36,7 @@ public class CraterConveyor extends BaseConveyor{
start = Core.atlas.find(name + "-5-0");
end = Core.atlas.find(name + "-6-0");
crater = Core.atlas.find("crater");
crater = Core.atlas.find("item-crater");
}
@Override