Skip to content

Commit

Permalink
Right, these exist
Browse files Browse the repository at this point in the history
  • Loading branch information
sleepyyapril committed Jan 7, 2025
1 parent a010860 commit f5d02a0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ private int TryCleanNearbyFootprints(EntityUid user, EntityUid target, Entity<Ab
var processed = 0;
foreach (var (uid, footprintComp) in cleaned)

Check failure on line 30 in Content.Server/Fluids/EntitySystems/AbsorbentSystem.Footprints.cs

View workflow job for this annotation

GitHub Actions / Test Packaging

Cannot infer the type of implicitly-typed deconstruction variable 'uid'.

Check failure on line 30 in Content.Server/Fluids/EntitySystems/AbsorbentSystem.Footprints.cs

View workflow job for this annotation

GitHub Actions / Test Packaging

Cannot infer the type of implicitly-typed deconstruction variable 'footprintComp'.

Check failure on line 30 in Content.Server/Fluids/EntitySystems/AbsorbentSystem.Footprints.cs

View workflow job for this annotation

GitHub Actions / Test Packaging

Cannot infer the type of implicitly-typed deconstruction variable 'uid'.

Check failure on line 30 in Content.Server/Fluids/EntitySystems/AbsorbentSystem.Footprints.cs

View workflow job for this annotation

GitHub Actions / Test Packaging

Cannot infer the type of implicitly-typed deconstruction variable 'footprintComp'.

Check failure on line 30 in Content.Server/Fluids/EntitySystems/AbsorbentSystem.Footprints.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Cannot infer the type of implicitly-typed deconstruction variable 'uid'.

Check failure on line 30 in Content.Server/Fluids/EntitySystems/AbsorbentSystem.Footprints.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Cannot infer the type of implicitly-typed deconstruction variable 'footprintComp'.

Check failure on line 30 in Content.Server/Fluids/EntitySystems/AbsorbentSystem.Footprints.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Cannot infer the type of implicitly-typed deconstruction variable 'uid'.

Check failure on line 30 in Content.Server/Fluids/EntitySystems/AbsorbentSystem.Footprints.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Cannot infer the type of implicitly-typed deconstruction variable 'footprintComp'.

Check failure on line 30 in Content.Server/Fluids/EntitySystems/AbsorbentSystem.Footprints.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Cannot infer the type of implicitly-typed deconstruction variable 'uid'.

Check failure on line 30 in Content.Server/Fluids/EntitySystems/AbsorbentSystem.Footprints.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Cannot infer the type of implicitly-typed deconstruction variable 'footprintComp'.

Check failure on line 30 in Content.Server/Fluids/EntitySystems/AbsorbentSystem.Footprints.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Cannot infer the type of implicitly-typed deconstruction variable 'uid'.

Check failure on line 30 in Content.Server/Fluids/EntitySystems/AbsorbentSystem.Footprints.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Cannot infer the type of implicitly-typed deconstruction variable 'footprintComp'.

Check failure on line 30 in Content.Server/Fluids/EntitySystems/AbsorbentSystem.Footprints.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

Cannot infer the type of implicitly-typed deconstruction variable 'uid'.

Check failure on line 30 in Content.Server/Fluids/EntitySystems/AbsorbentSystem.Footprints.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

Cannot infer the type of implicitly-typed deconstruction variable 'footprintComp'.

Check failure on line 30 in Content.Server/Fluids/EntitySystems/AbsorbentSystem.Footprints.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

Cannot infer the type of implicitly-typed deconstruction variable 'uid'.

Check failure on line 30 in Content.Server/Fluids/EntitySystems/AbsorbentSystem.Footprints.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

Cannot infer the type of implicitly-typed deconstruction variable 'footprintComp'.
{
if (TryPuddleInteract(user, used, uid, target.Comp, useDelay: null, absorbentSoln))
if (TryPuddleInteract(user, used.Owner, uid, used.Comp, useDelay: null, absorbentSoln))
processed++;

if (processed >= target.Comp.MaxCleanedFootprints)
if (processed >= used.Comp.MaxCleanedFootprints)
break;
}

Expand Down

0 comments on commit f5d02a0

Please sign in to comment.