Merge remote-tracking branch 'origin/master'

This commit is contained in:
Anuken
2020-11-19 13:31:03 -05:00
2 changed files with 5 additions and 2 deletions
+3
View File
@@ -31,6 +31,7 @@ public class TechTree implements ContentList{
node(router, () -> { node(router, () -> {
node(launchPad, Seq.with(new SectorComplete(extractionOutpost)), () -> { node(launchPad, Seq.with(new SectorComplete(extractionOutpost)), () -> {
node(interplanetaryAccelerator, Seq.with(new SectorComplete(planetaryTerminal)), () -> { node(interplanetaryAccelerator, Seq.with(new SectorComplete(planetaryTerminal)), () -> {
}); });
}); });
@@ -200,6 +201,7 @@ public class TechTree implements ContentList{
}); });
node(illuminator, () -> { node(illuminator, () -> {
}); });
}); });
@@ -422,6 +424,7 @@ public class TechTree implements ContentList{
node(multiplicativeReconstructor, Seq.with(new SectorComplete(overgrowth)), () -> { node(multiplicativeReconstructor, Seq.with(new SectorComplete(overgrowth)), () -> {
node(exponentialReconstructor, () -> { node(exponentialReconstructor, () -> {
node(tetrativeReconstructor, () -> { node(tetrativeReconstructor, () -> {
}); });
}); });
}); });
@@ -691,7 +691,7 @@ public class ServerControl implements ApplicationListener{
for(Player player : Groups.player){ for(Player player : Groups.player){
if(netServer.admins.isIDBanned(player.uuid())){ if(netServer.admins.isIDBanned(player.uuid())){
Call.sendMessage("[scarlet] " + player.name + " has been banned."); Call.sendMessage("[scarlet]" + player.name + " has been banned.");
player.con.kick(KickReason.banned); player.con.kick(KickReason.banned);
} }
} }
@@ -728,7 +728,7 @@ public class ServerControl implements ApplicationListener{
handler.register("unban", "<ip/ID>", "Completely unban a person by IP or ID.", arg -> { handler.register("unban", "<ip/ID>", "Completely unban a person by IP or ID.", arg -> {
if(netServer.admins.unbanPlayerIP(arg[0]) || netServer.admins.unbanPlayerID(arg[0])){ if(netServer.admins.unbanPlayerIP(arg[0]) || netServer.admins.unbanPlayerID(arg[0])){
info("Unbanned player.", arg[0]); info("Unbanned player: @", arg[0]);
}else{ }else{
err("That IP/ID is not banned!"); err("That IP/ID is not banned!");
} }