mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-03-09 20:29:06 +07:00
Sea port map fixes
This commit is contained in:
parent
d431ed8480
commit
24daa1e933
Binary file not shown.
@ -423,7 +423,7 @@ public class NetServer implements ApplicationListener{
|
||||
}
|
||||
});
|
||||
|
||||
clientCommands.<Player>register("vote", "<y/n/c>", "Vote to kick the current player. Admin can cancel the voting with 'c'.", (arg, player) -> {
|
||||
clientCommands.<Player>register("vote", "<y/n/c>", "Vote to kick the current player. Admins can cancel the voting with 'c'.", (arg, player) -> {
|
||||
if(currentlyKicking == null){
|
||||
player.sendMessage("[scarlet]Nobody is being voted on.");
|
||||
}else{
|
||||
|
@ -168,7 +168,7 @@ public class Weapon implements Cloneable{
|
||||
t.row();
|
||||
t.add("[lightgray]" + Stat.inaccuracy.localized() + ": [white]" + (int)inaccuracy + " " + StatUnit.degrees.localized());
|
||||
}
|
||||
if(!alwaysContinuous && reload > 0){
|
||||
if(!alwaysContinuous && reload > 0 && !bullet.killShooter){
|
||||
t.row();
|
||||
t.add("[lightgray]" + Stat.reload.localized() + ": " + (mirror ? "2x " : "") + "[white]" + Strings.autoFixed(60f / reload * shoot.shots, 2) + " " + StatUnit.perSecond.localized());
|
||||
}
|
||||
|
@ -400,7 +400,7 @@ public class PlacementFragment{
|
||||
}
|
||||
}).growX().left().margin(3);
|
||||
|
||||
if(!displayBlock.isPlaceable() || !player.isBuilder()){
|
||||
if((!displayBlock.isPlaceable() || !player.isBuilder()) && !state.rules.editor){
|
||||
topTable.row();
|
||||
topTable.table(b -> {
|
||||
b.image(Icon.cancel).padRight(2).color(Color.scarlet);
|
||||
|
Loading…
Reference in New Issue
Block a user