mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-13 00:05:23 +07:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
542555d721
@ -212,7 +212,7 @@ public class Logic implements ApplicationListener{
|
||||
|
||||
if(state.isGame()){
|
||||
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()){
|
||||
|
@ -89,7 +89,7 @@ public class Administration{
|
||||
public @Nullable String filterMessage(Playerc player, String message){
|
||||
String current = message;
|
||||
for(ChatFilter f : chatFilters){
|
||||
current = f.filter(player, message);
|
||||
current = f.filter(player, current);
|
||||
if(current == null) return null;
|
||||
}
|
||||
return current;
|
||||
|
@ -43,5 +43,8 @@
|
||||
},
|
||||
{
|
||||
"address": "mindustry.kr"
|
||||
},
|
||||
{
|
||||
"address": "mindustry.atannergaming.com"
|
||||
}
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user