mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'src/block/campaign.rs')
| -rw-r--r-- | src/block/campaign.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/block/campaign.rs b/src/block/campaign.rs index 9869eeb..46ff605 100644 --- a/src/block/campaign.rs +++ b/src/block/campaign.rs @@ -3,6 +3,6 @@ use crate::block::make_register; use crate::block::simple::{cost, make_simple}; make_simple!(CampaignBlock); make_register! { - "launch-pad" => CampaignBlock::new(3, true, cost!(Copper: 350, Lead: 200, Titanium: 150, Silicon: 140)); - "interplanetary-accelerator" => CampaignBlock::new(7, true, cost!(Copper: 16000, Silicon: 11000, Thorium: 13000, Titanium: 12000, SurgeAlloy: 6000, PhaseFabric: 5000)); + "launch-pad" -> CampaignBlock::new(3, true, cost!(Copper: 350, Lead: 200, Titanium: 150, Silicon: 140)); + "interplanetary-accelerator" -> CampaignBlock::new(7, true, cost!(Copper: 16000, Silicon: 11000, Thorium: 13000, Titanium: 12000, SurgeAlloy: 6000, PhaseFabric: 5000)); } |