This commit is contained in:
Anuken 2020-10-01 16:03:13 -04:00
parent 68c41774e4
commit 215cfaa42f
2 changed files with 7 additions and 1 deletions

View File

@ -1526,7 +1526,7 @@ public class Blocks implements ContentList{
force = 4.5f;
scaledForce = 5.5f;
range = 110f;
damage = 0.1f;
damage = 0.4f;
health = 160 * size * size;
rotateSpeed = 10;

View File

@ -7,6 +7,7 @@ import arc.scene.actions.*;
import arc.scene.ui.layout.*;
import arc.util.*;
import mindustry.content.*;
import mindustry.game.EventType.*;
import mindustry.gen.*;
import static mindustry.Vars.*;
@ -32,6 +33,11 @@ public class BlockConfigFragment extends Fragment{
}
}
});
Events.on(ResetEvent.class, e -> {
table.visible = false;
configTile = null;
});
}
public boolean isShown(){