Skip to content

Commit dd6254f

Browse files
Fix Airtight Explosion Cache (space-wizards#43276)
fix explosions Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com>
1 parent 6d9d3ef commit dd6254f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Content.Server/Explosion/EntitySystems/ExplosionSystem.Airtight.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ private void GetExplosionTolerance(EntityUid uid, Span<FixedPoint2> explosionTol
245245
var damagePerIntensity = FixedPoint2.Zero;
246246
foreach (var (type, value) in explosionType.DamagePerIntensity.DamageDict)
247247
{
248-
if (_damageableSystem.CanBeDamagedBy((uid, damageable), type))
248+
if (!_damageableSystem.CanBeDamagedBy((uid, damageable), type))
249249
continue;
250250

251251
// TODO EXPLOSION SYSTEM

0 commit comments

Comments
 (0)