Skip to content

Commit

Permalink
The most minor code cleanup possible, lol
Browse files Browse the repository at this point in the history
  • Loading branch information
Slotterleet committed Dec 2, 2023
1 parent f4f9e77 commit 638ea0a
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions core/src/fos/content/FOSBlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -1137,7 +1137,7 @@ protected boolean canPump(Tile tile) {
shallow = true;
supportsOverlay = true;
}};
cyanium = new Floor("cyanium"){};
cyanium = new Floor("cyanium");
cyaniumWall = new StaticWall("cyanium-wall"){{
variants = 4;
}};
Expand All @@ -1147,42 +1147,42 @@ protected boolean canPump(Tile tile) {
wall = cyaniumWall;
}};
*/
crimsonStone = new Floor("crimson-stone"){};
crimsonStone = new Floor("crimson-stone");
crimsonStoneWall = new StaticWall("crimson-stone-wall"){{
variants = 1;
}};
elithite = new Floor("elithite"){{
itemDrop = rawElithite;
variants = 4;
}};
elithiteWall = new StaticWall("elithite-wall"){};
elithiteWall = new StaticWall("elithite-wall");
elbium = new Floor("elbium"){{
itemDrop = rawElbium;
variants = 4;
}};
elbiumWall = new StaticWall("elbium-wall"){};
elbiumWall = new StaticWall("elbium-wall");
nethratium = new Floor("nethratium"){{
itemDrop = rawNethratium;
variants = 4;
}};
nethratiumWall = new StaticWall("nethratium-wall"){};
nethratiumWall = new StaticWall("nethratium-wall");
annite = new Floor("annite"){{
variants = 4;
}};
anniteWall = new StaticWall("annite-wall"){};
anniteWall = new StaticWall("annite-wall");
blublu = new Floor("blublu"){{
variants = 4;
}};
blubluWall = new StaticWall("blublu-wall"){};
blubluWall = new StaticWall("blublu-wall");
blubluAlt = new Floor("blublu-alt"){{
variants = 4;
wall = blubluWall;
}};
purpur = new Floor("purpur"){{
variants = 4;
}};
purpurWall = new StaticWall("purpur-wall"){};
alienMoss = new OverlayFloor("alien-moss"){};
purpurWall = new StaticWall("purpur-wall");
alienMoss = new OverlayFloor("alien-moss");
oreTin = new UndergroundOreBlock("ore-tin"){{
drop = tin;
variants = 3;
Expand Down

0 comments on commit 638ea0a

Please sign in to comment.