Replaced '$' formatting with '@'
This commit is contained in:
@@ -10,7 +10,7 @@ import static mindustry.Vars.*;
|
||||
public class BansDialog extends BaseDialog{
|
||||
|
||||
public BansDialog(){
|
||||
super("$server.bans");
|
||||
super("@server.bans");
|
||||
|
||||
addCloseButton();
|
||||
|
||||
@@ -30,7 +30,7 @@ public class BansDialog extends BaseDialog{
|
||||
pane.setFadeScrollBars(false);
|
||||
|
||||
if(netServer.admins.getBanned().size == 0){
|
||||
table.add("$server.bans.none");
|
||||
table.add("@server.bans.none");
|
||||
}
|
||||
|
||||
for(PlayerInfo info : netServer.admins.getBanned()){
|
||||
@@ -40,7 +40,7 @@ public class BansDialog extends BaseDialog{
|
||||
res.labelWrap("IP: [lightgray]" + info.lastIP + "\n[]Name: [lightgray]" + info.lastName).width(w - h - 24f);
|
||||
res.add().growX();
|
||||
res.button(Icon.cancel, () -> {
|
||||
ui.showConfirm("$confirm", "$confirmunban", () -> {
|
||||
ui.showConfirm("@confirm", "@confirmunban", () -> {
|
||||
netServer.admins.unbanPlayerID(info.id);
|
||||
setup();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user