Skip to content

Commit

Permalink
Remove RT
Browse files Browse the repository at this point in the history
I wear no mask, and I hate everything.
  • Loading branch information
Twcash committed Aug 25, 2024
1 parent 3d1b0bc commit b8cccc2
Show file tree
Hide file tree
Showing 15 changed files with 2 additions and 747 deletions.
1 change: 0 additions & 1 deletion src/aquarion/AquarionMod.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ public void loadContent() {
AquaEnv.loadContent();
AquaDefense.loadContent();
AquaUnitTypes.loadContent();
TorqueBlocks.loadContent();
AquaCore.loadContent();
AquaCrafters.loadContent();
AquaPlanets.loadContent();
Expand Down
6 changes: 2 additions & 4 deletions src/aquarion/blocks/AquaCrafters.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@

import aquarion.AquaAttributes;
import aquarion.AquaItems;
import aquarion.world.blocks.ConsumeRT;
import aquarion.world.blocks.rotPower.RTWallCrafter;
import mindustry.content.Items;
import mindustry.type.Category;
import mindustry.world.Block;
import mindustry.world.blocks.production.WallCrafter;
import mindustry.world.meta.Env;

import static mindustry.gen.Sounds.drill;
Expand All @@ -15,7 +14,7 @@
public class AquaCrafters {
public static Block bauxiteHarvester;
public static void loadContent(){
bauxiteHarvester = new RTWallCrafter("bauxite-harvester"){{
bauxiteHarvester = new WallCrafter("bauxite-harvester"){{
size = 4;
requirements(Category.production, with(Items.lead, 30, AquaItems.bauxite, 65));
researchCost = with(Items.lead, 15, AquaItems.bauxite, 10);
Expand All @@ -27,7 +26,6 @@ public static void loadContent(){
envEnabled|= Env.terrestrial | Env.underwater;
envDisabled|= Env.spores | Env.scorching;
squareSprite = false;
consume(new ConsumeRT(10));
}};
}
}
35 changes: 0 additions & 35 deletions src/aquarion/blocks/TorqueBlocks.java

This file was deleted.

28 changes: 0 additions & 28 deletions src/aquarion/world/blocks/ConsumeRT.java

This file was deleted.

79 changes: 0 additions & 79 deletions src/aquarion/world/blocks/rotPower/RTGenericCrafter.java

This file was deleted.

91 changes: 0 additions & 91 deletions src/aquarion/world/blocks/rotPower/RTWallCrafter.java

This file was deleted.

Loading

0 comments on commit b8cccc2

Please sign in to comment.