mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-13 08:15:04 +07:00
Misc bugfixes and tweaks
This commit is contained in:
parent
b2e960a038
commit
77ddbd027a
@ -2965,7 +2965,6 @@ public class UnitTypes{
|
||||
}));
|
||||
|
||||
collidesTiles = true;
|
||||
recoil = 0.5f;
|
||||
backColor = hitColor = Pal.techBlue;
|
||||
frontColor = Color.white;
|
||||
|
||||
|
@ -20,6 +20,7 @@ public class Junction extends Block{
|
||||
underBullets = true;
|
||||
group = BlockGroup.transportation;
|
||||
unloadable = false;
|
||||
floating = true;
|
||||
noUpdateDisabled = true;
|
||||
}
|
||||
|
||||
|
@ -14,6 +14,7 @@ public class LiquidRouter extends LiquidBlock{
|
||||
solid = false;
|
||||
noUpdateDisabled = true;
|
||||
canOverdrive = false;
|
||||
floating = true;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -91,7 +91,9 @@ public class UnitCargoLoader extends Block{
|
||||
|
||||
if(readUnitId != -1){
|
||||
unit = Groups.unit.getByID(readUnitId);
|
||||
readUnitId = -1;
|
||||
if(unit != null || !net.client()){
|
||||
readUnitId = -1;
|
||||
}
|
||||
}
|
||||
|
||||
warmup = Mathf.approachDelta(warmup, efficiency, 1f / 60f);
|
||||
|
Loading…
Reference in New Issue
Block a user