@@ -1,10 +1,8 @@
|
||||
using Content.Server.Destructible.Thresholds.Triggers;
|
||||
using Content.Shared.Damage;
|
||||
using Content.Shared.Damage.Prototypes;
|
||||
using Content.Shared.Destructible.Thresholds.Triggers;
|
||||
using Content.Shared.FixedPoint;
|
||||
using Robust.Shared.GameObjects;
|
||||
using Robust.Shared.IoC;
|
||||
using Robust.Shared.Map;
|
||||
using Robust.Shared.Prototypes;
|
||||
using static Content.IntegrationTests.Tests.Destructible.DestructibleTestPrototypes;
|
||||
|
||||
@@ -91,7 +89,7 @@ namespace Content.IntegrationTests.Tests.Destructible
|
||||
Assert.That(threshold.Trigger, Is.InstanceOf<AndTrigger>());
|
||||
});
|
||||
|
||||
var trigger = (AndTrigger) threshold.Trigger;
|
||||
var trigger = (AndTrigger)threshold.Trigger;
|
||||
|
||||
Assert.Multiple(() =>
|
||||
{
|
||||
@@ -162,7 +160,7 @@ namespace Content.IntegrationTests.Tests.Destructible
|
||||
Assert.That(threshold.Trigger, Is.InstanceOf<AndTrigger>());
|
||||
});
|
||||
|
||||
trigger = (AndTrigger) threshold.Trigger;
|
||||
trigger = (AndTrigger)threshold.Trigger;
|
||||
|
||||
Assert.Multiple(() =>
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user