Merge remote-tracking branch 'origin/master'
This commit is contained in:
@@ -253,7 +253,7 @@ viewplayer = Отслеживаем игрока: [accent]{0}
|
||||
|
||||
trace = Отслеживать игрока
|
||||
trace.playername = Имя игрока: [accent]{0}
|
||||
trace.ip = Адрес: [accent]{0}
|
||||
trace.ip = IP: [accent]{0}
|
||||
trace.id = ID: [accent]{0}
|
||||
trace.mobile = Мобильный клиент: [accent]{0}
|
||||
trace.modclient = Пользовательский клиент: [accent]{0}
|
||||
@@ -286,7 +286,7 @@ confirmunadmin = Вы действительно хотите убрать иг
|
||||
votekick.reason = Причина
|
||||
votekick.reason.message = Вы уверены, что хотите голосованием выгнать "{0}[white]"?\nЕсли да, введите причину:
|
||||
joingame.title = Присоединиться к игре
|
||||
joingame.ip = Адрес:
|
||||
joingame.ip = IP:
|
||||
disconnect = Отключено.
|
||||
disconnect.error = Ошибка соединения.
|
||||
disconnect.closed = Соединение закрыто.
|
||||
|
||||
@@ -684,8 +684,8 @@ public class UnitType extends UnlockableContent{
|
||||
|
||||
if(pathCost == null){
|
||||
pathCost =
|
||||
example instanceof WaterMovec ? ControlPathfinder.costNaval :
|
||||
allowLegStep ? ControlPathfinder.costLegs :
|
||||
naval ? ControlPathfinder.costNaval :
|
||||
allowLegStep || example instanceof Crawlc ? ControlPathfinder.costLegs :
|
||||
hovering ? ControlPathfinder.costHover :
|
||||
ControlPathfinder.costGround;
|
||||
}
|
||||
|
||||
@@ -5,7 +5,6 @@ import arc.graphics.g2d.*;
|
||||
import arc.math.*;
|
||||
import arc.struct.*;
|
||||
import arc.util.*;
|
||||
import mindustry.*;
|
||||
import mindustry.content.*;
|
||||
import mindustry.entities.*;
|
||||
import mindustry.entities.units.*;
|
||||
@@ -55,9 +54,11 @@ public class RegenProjector extends Block{
|
||||
|
||||
x *= tilesize;
|
||||
y *= tilesize;
|
||||
x += offset;
|
||||
y += offset;
|
||||
|
||||
Drawf.dashSquare(baseColor, x, y, range * tilesize);
|
||||
indexer.eachBlock(Vars.player.team(), Tmp.r1.setCentered(x, y, range * tilesize), b -> true, t -> {
|
||||
indexer.eachBlock(player.team(), Tmp.r1.setCentered(x, y, range * tilesize), b -> true, t -> {
|
||||
Drawf.selected(t, Tmp.c1.set(baseColor).a(Mathf.absin(4f, 1f)));
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user