Skip to content

Commit

Permalink
Make radar available regardless of fog
Browse files Browse the repository at this point in the history
Absolutely nothing will go wrong with this idea
  • Loading branch information
sbxte committed Jan 21, 2024
1 parent 312add8 commit 5057bc1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/src/mindustry/content/Blocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -1803,7 +1803,8 @@ public static void load(){
}};

radar = new Radar("radar"){{
requirements(Category.effect, BuildVisibility.fogOnly, with(Items.silicon, 60, Items.graphite, 50, Items.beryllium, 10));
// requirements(Category.effect, BuildVisibility.fogOnly, with(Items.silicon, 60, Items.graphite, 50, Items.beryllium, 10));
requirements(Category.effect, with(Items.silicon, 60, Items.graphite, 50, Items.beryllium, 10));
outlineColor = Color.valueOf("4a4b53");
fogRadius = 34;
researchCost = with(Items.silicon, 70, Items.graphite, 70);
Expand Down

0 comments on commit 5057bc1

Please sign in to comment.