Skip to content

Commit

Permalink
space
Browse files Browse the repository at this point in the history
  • Loading branch information
13lackHawk committed Jul 9, 2024
1 parent 90651e7 commit d1c72cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Server/Tiles/LavaSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public override void Initialize()
private void OnLavaStepTriggerAttempt(EntityUid uid, LavaComponent component, ref StepTriggerAttemptEvent args)
{
// SS220-vehicles-go-boom-in-lava-start
if(HasComp<VehicleComponent>(args.Tripper))
if (HasComp<VehicleComponent>(args.Tripper))
{
_explosionSystem.QueueExplosion(args.Tripper, "Default", 3, 25f, 10, canCreateVacuum:false); // Not deadly to rider but still painful
if (TryComp<DamageableComponent>(args.Tripper, out var damageablecomp))
Expand Down

0 comments on commit d1c72cb

Please sign in to comment.