Skip to content

Commit

Permalink
Update Mindsutry.java
Browse files Browse the repository at this point in the history
  • Loading branch information
neo-228 committed Apr 11, 2024
1 parent fddfa18 commit fe51b62
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/nukethea/Mindsutry.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package nukethea;
package nukethea;

import arc.util.*;
import arc.graphics.Color;
Expand Down Expand Up @@ -104,12 +104,12 @@ public void loadContent() {

var dagger = UnitTypes.dagger;

dagger.speed = 3f;
((BasicBulletType) dagger.weapons.get(0).bullet).width = 30f;
dagger.weapons.get(0).bullet.lifetime = 180f;
dagger.weapons.get(0).bullet.speed = 1f;
dagger.speed = 6f;
((BasicBulletType) dagger.weapons.get(0).bullet).width = 60f;
dagger.weapons.get(0).bullet.lifetime = 360f;
dagger.weapons.get(0).bullet.speed = 2f;

dagger.legBaseOffset = 5f;
dagger.legBaseOffset = 10f;
dagger.legMaxLength = 5f;
}
}

0 comments on commit fe51b62

Please sign in to comment.