:trollface:
This commit is contained in:
parent
e52a4a1ee9
commit
6a533f2fea
|
|
@ -340,11 +340,14 @@ public sealed partial class AtmosAlertsComputerWindow : FancyWindow
|
|||
if (blip == null)
|
||||
return false;
|
||||
|
||||
// DeltaV: fix client until upstream does
|
||||
// Color the region based on alarm state and entity tracking
|
||||
color = blip.Value.Item2 * new Color(154, 154, 154);
|
||||
var output = blip.Value.Item2 * new Color(154, 154, 154);
|
||||
|
||||
if (_trackedEntity != null && _trackedEntity != regionOwner)
|
||||
color *= Color.DimGray;
|
||||
output *= Color.DimGray;
|
||||
|
||||
color = output;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ public sealed class ParadoxClonerRule : StationEventSystem<ParadoxClonerRuleComp
|
|||
mindContainer.Mind is {} mindId &&
|
||||
!_role.MindIsAntagonist(mindId) &&
|
||||
_role.MindHasRole<JobRoleComponent>(mindId, out var role) &&
|
||||
role?.Comp.JobPrototype is {} job)
|
||||
role?.Comp1.JobPrototype is {} job)
|
||||
{
|
||||
candidates.Add((uid, mindId, job, profile));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -107,7 +107,7 @@ public sealed class OracleSystem : EntitySystem
|
|||
if (HasComp<MobStateComponent>(args.Used))
|
||||
return;
|
||||
|
||||
if (!TryComp(args.Used, out MetaDataComponent meta))
|
||||
if (!TryComp(args.Used, out MetaDataComponent? meta))
|
||||
return;
|
||||
|
||||
if (HasComp<BorgChassisComponent>(args.User))
|
||||
|
|
|
|||
|
|
@ -273,7 +273,7 @@
|
|||
children:
|
||||
- !type:NestedSelector # DeltaV
|
||||
tableId: LockerFillResearchDirectorDeltaV
|
||||
- id: Intellicard
|
||||
#- id: Intellicard # DeltaV: temporarily removed until AI is enabled
|
||||
- id: BoxEncryptionKeyScience
|
||||
- id: CircuitImprinterMachineCircuitboard
|
||||
- id: ClothingBeltUtilityFilled
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit d1d43f834b8845da698ef1898e8191ab159ee367
|
||||
Subproject commit 32bca7cfd417edcad9a60c2b1703eba8675f56af
|
||||
Loading…
Reference in New Issue