Merge remote-tracking branch 'origin/master'
This commit is contained in:
@@ -212,7 +212,7 @@ public class Logic implements ApplicationListener{
|
|||||||
|
|
||||||
if(state.isGame()){
|
if(state.isGame()){
|
||||||
if(!net.client()){
|
if(!net.client()){
|
||||||
state.enemies = Groups.unit.count(b -> b.team() == state.rules.waveTeam && b.type().isCounted);
|
state.enemies = Groups.unit.count(u -> u.team() == state.rules.waveTeam && u.type().isCounted);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!state.isPaused()){
|
if(!state.isPaused()){
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ public class Administration{
|
|||||||
public @Nullable String filterMessage(Playerc player, String message){
|
public @Nullable String filterMessage(Playerc player, String message){
|
||||||
String current = message;
|
String current = message;
|
||||||
for(ChatFilter f : chatFilters){
|
for(ChatFilter f : chatFilters){
|
||||||
current = f.filter(player, message);
|
current = f.filter(player, current);
|
||||||
if(current == null) return null;
|
if(current == null) return null;
|
||||||
}
|
}
|
||||||
return current;
|
return current;
|
||||||
|
|||||||
@@ -43,5 +43,8 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"address": "mindustry.kr"
|
"address": "mindustry.kr"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"address": "mindustry.atannergaming.com"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user