Merge remote-tracking branch 'origin/master'
This commit is contained in:
@@ -3437,7 +3437,6 @@ public class Blocks{
|
||||
hitEffect = Fx.hitLancer;
|
||||
despawnEffect = Fx.none;
|
||||
status = StatusEffects.shocked;
|
||||
statusDuration = 10f;
|
||||
hittable = false;
|
||||
lightColor = Color.white;
|
||||
collidesAir = false;
|
||||
@@ -3489,7 +3488,6 @@ public class Blocks{
|
||||
despawnEffect = Fx.blastExplosion;
|
||||
|
||||
status = StatusEffects.blasted;
|
||||
statusDuration = 60f;
|
||||
|
||||
hitColor = backColor = trailColor = Pal.blastAmmoBack;
|
||||
frontColor = Pal.blastAmmoFront;
|
||||
@@ -3915,7 +3913,6 @@ public class Blocks{
|
||||
collidesGround = true;
|
||||
|
||||
status = StatusEffects.blasted;
|
||||
statusDuration = 60f;
|
||||
|
||||
backColor = hitColor = trailColor = Pal.blastAmmoBack;
|
||||
frontColor = Pal.blastAmmoFront;
|
||||
@@ -5455,7 +5452,6 @@ public class Blocks{
|
||||
hitEffect = Fx.hitLancer;
|
||||
despawnEffect = Fx.none;
|
||||
status = StatusEffects.shocked;
|
||||
statusDuration = 10f;
|
||||
hittable = false;
|
||||
lightColor = Color.white;
|
||||
buildingDamageMultiplier = 0.25f;
|
||||
|
||||
@@ -91,6 +91,10 @@ public class Administration{
|
||||
dosBlacklist.add(address);
|
||||
}
|
||||
|
||||
public synchronized void unBlacklistDos(String address){
|
||||
dosBlacklist.remove(address);
|
||||
}
|
||||
|
||||
public synchronized boolean isDosBlacklisted(String address){
|
||||
return dosBlacklist.contains(address);
|
||||
}
|
||||
|
||||
@@ -113,6 +113,8 @@ public class ArcNetProvider implements NetProvider{
|
||||
|
||||
//kill connections above the limit to prevent spam
|
||||
if((playerLimitCache > 0 && server.getConnections().length > playerLimitCache) || netServer.admins.isDosBlacklisted(ip)){
|
||||
Log.info("Closing connection @ - IP marked as a potential DOS attack.", ip);
|
||||
|
||||
connection.close(DcReason.closed);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -710,7 +710,7 @@ public class StatValues{
|
||||
|
||||
if(type.status != StatusEffects.none){
|
||||
sep(bt, (type.status.hasEmoji() ? type.status.emoji() : "") + "[stat]" + type.status.localizedName + (type.status.reactive ? "" : "[lightgray] ~ [stat]" +
|
||||
((int)(type.statusDuration / 60f)) + "[lightgray] " + Core.bundle.get("unit.seconds"))).with(c -> withTooltip(c, type.status));
|
||||
Strings.autoFixed(type.statusDuration / 60f, 1) + "[lightgray] " + Core.bundle.get("unit.seconds"))).with(c -> withTooltip(c, type.status));
|
||||
}
|
||||
|
||||
if(!type.targetMissiles){
|
||||
|
||||
@@ -666,7 +666,7 @@ public class ServerControl implements ApplicationListener{
|
||||
if(arg.length == 0){
|
||||
info("Subnets banned: @", netServer.admins.getSubnetBans().isEmpty() ? "<none>" : "");
|
||||
for(String subnet : netServer.admins.getSubnetBans()){
|
||||
info("&lw " + subnet);
|
||||
info("&lw\t" + subnet);
|
||||
}
|
||||
}else if(arg.length == 1){
|
||||
err("You must provide a subnet to add or remove.");
|
||||
@@ -1054,6 +1054,35 @@ public class ServerControl implements ApplicationListener{
|
||||
}
|
||||
});
|
||||
|
||||
handler.register("dos-ban", "[add/remove] [ip]", "Add or remove a DOS ban.", arg -> {
|
||||
if(arg.length == 0){
|
||||
info("DOS bans: @", netServer.admins.dosBlacklist.isEmpty() ? "<none>" : "");
|
||||
|
||||
netServer.admins.dosBlacklist.forEach(address -> {
|
||||
info("&lw\t" + address);
|
||||
});
|
||||
return;
|
||||
}else if(arg.length == 1){
|
||||
err("Expected either zero or two parameters, but only got one parameter.");
|
||||
return;
|
||||
}
|
||||
|
||||
String action = arg[0].toLowerCase();
|
||||
String ip = arg[1];
|
||||
|
||||
if(action.equals("add")){
|
||||
netServer.admins.blacklistDos(ip);
|
||||
info("Dos banned: @", ip);
|
||||
return;
|
||||
}else if(action.equals("remove")){
|
||||
netServer.admins.unBlacklistDos(ip);
|
||||
info("Removed dos ban: @", ip);
|
||||
return;
|
||||
}
|
||||
|
||||
err("Unrecognized action: @", action);
|
||||
});
|
||||
|
||||
mods.eachClass(p -> p.registerServerCommands(handler));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user