Skip to content

Commit ec040b7

Browse files
committed
finalized? maybe
1 parent b6e1cb1 commit ec040b7

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"displayName": "Overblocks Mod",
33
"description": "A Mindustry Java mod.",
4-
"version": "0.0.0",
4+
"version": "0.0.1",
55
"minGameVersion": "146",
66
"author": "BlueTheCube",
77
"java": true,

src/overblocks/OverblocksMod.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ public void loadOther(){
6767
width = 17f;
6868
toColor = OBPal.dreadRust;
6969
shootEffect = smokeEffect = OBFx.dreadShoot;
70+
status = OBStatusEffects.dreadRust;
7071
statusDuration = 60;
7172
}};
7273

src/overblocks/content/OBTechTree.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
import mindustry.type.*;
1010

1111
import static mindustry.content.Blocks.*;
12+
import static mindustry.content.Items.*;
1213
import static overblocks.content.OBBlocks.*;
14+
import static overblocks.content.OBItems.*;
1315

1416
@SuppressWarnings({"unused", "CodeBlock2Expr"})
1517
public class OBTechTree {
@@ -21,6 +23,10 @@ public static void load(){
2123
node(plastaniumCrusher);
2224
});
2325

26+
vanillaNode(pyratite, () -> {
27+
node(diseaseVector);
28+
});
29+
2430
vanillaNode(pyratiteMixer, () -> {
2531
node(diseaseMixer);
2632
});

0 commit comments

Comments
 (0)