Merge remote-tracking branch 'origin/master'

This commit is contained in:
Anuken 2021-11-15 08:24:47 -05:00
commit d23813f328
13 changed files with 28 additions and 15 deletions

View file

@ -95,7 +95,7 @@ public class WaveInfoDialog extends BaseDialog{
dialog.hide();
}).marginLeft(12f).disabled(b -> Core.app.getClipboardText() == null || Core.app.getClipboardText().isEmpty()).row();
t.button("@settings.reset", Icon.upload, style, () -> ui.showConfirm("@confirm", "@settings.clear.confirm", () -> {
t.button("@settings.reset", Icon.upload, style, () -> ui.showConfirm("@confirm", "@settings.clear.confirm", () -> {
groups = JsonIO.copy(waves.get());
buildGroups();
dialog.hide();

View file

@ -1035,7 +1035,12 @@ abstract class BuildingComp implements Posc, Teamc, Healthc, Buildingc, Timerc,
/** Called *after* the tile has been removed. */
public void afterDestroyed(){
if(block.destroyBullet != null){
//I really do not like that the bullet will not destroy derelict
//but I can't do anything about it without using a random team
//which may or may not cause issues with servers and js
block.destroyBullet.create(this, Team.derelict, x, y, 0);
}
}
/** @return the cap for item amount calculations, used when this block explodes. */

View file

@ -182,6 +182,7 @@ public class LightRenderer{
public void draw(){
if(!Vars.enableLight){
lights.clear();
circleIndex = 0;
return;
}

View file

@ -31,7 +31,7 @@ public class ContentInfoDialog extends BaseDialog{
table.table(title1 -> {
title1.image(content.uiIcon).size(iconXLarge).scaling(Scaling.fit);
title1.add("[accent]" + content.localizedName).padLeft(5);
title1.add("[accent]" + content.localizedName + (enableConsole ? "\n[gray]" + content.name : "")).padLeft(5);
});
table.row();

View file

@ -98,7 +98,7 @@ public class DatabaseDialog extends BaseDialog{
ui.content.show(unlock);
}
});
image.addListener(new Tooltip(t -> t.background(Tex.button).add(unlock.localizedName)));
image.addListener(new Tooltip(t -> t.background(Tex.button).add(unlock.localizedName + (enableConsole ? "\n[gray]" + unlock.name : ""))));
}
if((++count) % cols == 0){

View file

@ -29,6 +29,7 @@ import mindustry.world.blocks.*;
import mindustry.world.blocks.environment.*;
import mindustry.world.blocks.power.*;
import mindustry.world.consumers.*;
import mindustry.entities.bullet.*;
import mindustry.world.meta.*;
import java.lang.reflect.*;
@ -132,6 +133,8 @@ public class Block extends UnlockableContent{
public int health = -1;
/** base block explosiveness */
public float baseExplosiveness = 0f;
/** bullet that this block spawns when destroyed */
public @Nullable BulletType destroyBullet = null;
/** whether this block can be placed on edges of liquids. */
public boolean floating = false;
/** multiblock size */

View file

@ -252,6 +252,7 @@ public class MassDriver extends Block{
@Override
public boolean onConfigureTileTapped(Building other){
if(this == other){
if(link == -1) deselect();
configure(-1);
return false;
}

View file

@ -432,6 +432,7 @@ public class PayloadMassDriver extends PayloadBlock{
@Override
public boolean onConfigureTileTapped(Building other){
if(this == other){
if(link == -1) deselect();
configure(-1);
return false;
}

View file

@ -20,6 +20,7 @@ public class Battery extends PowerDistributor{
super(name);
outputsPower = true;
consumesPower = true;
canOverdrive = false;
flags = EnumSet.of(BlockFlag.battery);
//TODO could be supported everywhere...
envEnabled |= Env.space;

View file

@ -53,7 +53,6 @@ public class CoreBlock extends StorageBlock{
//support everything
envEnabled = Env.any;
drawDisabled = false;
replaceable = false;
rebuildable = false;
}

View file

@ -118,6 +118,16 @@ public class CommandCenter extends Block{
table.label(() -> team.data().command.localized()).style(Styles.outlineLabel).center().growX().get().setAlignment(Align.center);
}
@Override
public boolean onConfigureTileTapped(Building other){
if(this == other){
deselect();
return false;
}
return true;
}
@Override
public void write(Writes write){
super.write(write);

View file

@ -1,8 +1,4 @@
[
{
"name": "Mindustry Central",
"address": ["n2.mindustry.me:4019", "mindustry.me:2034", "mindustry.me:2035"]
},
{
"name": "RCM",
"address": ["185.104.248.61", "easyplay.su"]
@ -108,8 +104,8 @@
"address": ["usfr2.forcehost.net:25578"]
},
{
"name": "Español",
"address": ["168.119.36.188:41445"]
"name": "Mindustry Español",
"address": ["panel.mindustry.me:2011", "mindustry.me:2034", "mindustry.me:2035"]
},
{
"name": "CreateDustry",

View file

@ -23,10 +23,6 @@
"name": "DarkDustry",
"address": ["darkdustry.ml", "darkdustry.ml:6000", "darkdustry.ml:7000", "darkdustry.ml:8000", "darkdustry.ml:9000"]
},
{
"name": "SkaarjDustry",
"address": ["skaarjproject.duckdns.org"]
},
{
"name": "Chaotic Neutral",
"address": ["c-n.ddns.net:5555", "c-n.ddns.net:6666"]