Skip to content

Commit

Permalink
ghost
Browse files Browse the repository at this point in the history
  • Loading branch information
PvrG committed Dec 2, 2024
1 parent aee31f5 commit 52416da
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ private void OnUse(EntityUid uid, ExperimentalTeleporterComponent component, Use
Teleport(args.User, uid, component, coords, oldCoords);

if (!TryCheckWall(coords)
|| EmergencyTeleportation(args.User, uid, component, xform, oldCoords, newOffset))
|| EmergencyTeleportation(args.User, uid, component, xform, oldCoords, newOffset)
|| HasComp<GhostComponent>(args.User))

Check failure on line 59 in Content.Server/Backmen/Teleporter/ExperimentalTeleporterSystem.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The type or namespace name 'GhostComponent' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 59 in Content.Server/Backmen/Teleporter/ExperimentalTeleporterSystem.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The type or namespace name 'GhostComponent' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 59 in Content.Server/Backmen/Teleporter/ExperimentalTeleporterSystem.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

The type or namespace name 'GhostComponent' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 59 in Content.Server/Backmen/Teleporter/ExperimentalTeleporterSystem.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

The type or namespace name 'GhostComponent' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 59 in Content.Server/Backmen/Teleporter/ExperimentalTeleporterSystem.cs

View workflow job for this annotation

GitHub Actions / Test Packaging

The type or namespace name 'GhostComponent' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 59 in Content.Server/Backmen/Teleporter/ExperimentalTeleporterSystem.cs

View workflow job for this annotation

GitHub Actions / Test Packaging

The type or namespace name 'GhostComponent' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 59 in Content.Server/Backmen/Teleporter/ExperimentalTeleporterSystem.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The type or namespace name 'GhostComponent' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 59 in Content.Server/Backmen/Teleporter/ExperimentalTeleporterSystem.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The type or namespace name 'GhostComponent' could not be found (are you missing a using directive or an assembly reference?)
return;

_bodySystem.GibBody(args.User, true, splatModifier: 3F);
Expand Down

0 comments on commit 52416da

Please sign in to comment.