Revert "Hotfix ExplosionLaunchedComponent"

This reverts commit 6b98e65456.
This commit is contained in:
metalgearsloth
2021-07-24 13:04:52 +10:00
parent 6b98e65456
commit 2ba201ccff

View File

@@ -16,9 +16,6 @@ namespace Content.Server.Explosion.Components
var sourceLocation = eventArgs.Source;
var targetLocation = eventArgs.Target.Transform.Coordinates;
if (sourceLocation.Equals(targetLocation)) return;
var direction = (targetLocation.ToMapPos(Owner.EntityManager) - sourceLocation.ToMapPos(Owner.EntityManager)).Normalized;
var throwForce = eventArgs.Severity switch
@@ -27,7 +24,7 @@ namespace Content.Server.Explosion.Components
ExplosionSeverity.Light => 20,
_ => 0,
};
Owner.TryThrow(direction, throwForce);
Owner.TryThrow(direction * throwForce);
}
}
}