This commit is contained in:
Anuken
2021-07-13 17:34:19 -04:00
parent cfb7d29013
commit c43fd88f55
6 changed files with 5 additions and 5 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 451 B

After

Width:  |  Height:  |  Size: 451 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 500 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 128 B

View File

@@ -33,7 +33,7 @@ import static arc.scene.actions.Actions.*;
import static mindustry.Vars.*;
public class UI implements ApplicationListener, Loadable{
private static String billions, millions, thousands;
public static String billions, millions, thousands;
public static PixmapPacker packer;
@@ -587,7 +587,7 @@ public class UI implements ApplicationListener, Loadable{
if(mag >= 1_000_000_000){
return sign + Strings.fixed(mag / 1_000_000_000f, 1) + "[gray]" + billions+ "[]";
}else if(mag >= 1_000_000){
return sign + Strings.fixed(mag / 1_000_000f, 1) + "[gray]" +millions + "[]";
return sign + Strings.fixed(mag / 1_000_000f, 1) + "[gray]" + millions + "[]";
}else if(mag >= 10_000){
return number / 1000 + "[gray]" + thousands + "[]";
}else if(mag >= 1000){

View File

@@ -19,8 +19,8 @@ import mindustry.world.meta.*;
import static mindustry.Vars.*;
public class BeamDrill extends Block{
public @Load("minelaser") TextureRegion laser;
public @Load("minelaser-end") TextureRegion laserEnd;
public @Load("drill-laser") TextureRegion laser;
public @Load("drill-laser-end") TextureRegion laserEnd;
public @Load("@-top") TextureRegion topRegion;
public float drillTime = 200f;