Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix master #26501

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
using Content.Server.Power.Components;
using Content.Shared.UserInterface;
using Content.Server.Advertise;
using Content.Server.Advertise.Components;
using Content.Server.Advertise.EntitySystems;
using Content.Shared.Arcade;
using Robust.Server.GameObjects;
using Robust.Shared.Player;
Expand Down Expand Up @@ -96,7 +98,7 @@
component.Player = null;
if (component.ShouldSayThankYou && TryComp<AdvertiseComponent>(uid, out var advertise))
{
_advertise.SayThankYou(uid, advertise);

Check failure on line 101 in Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs

View workflow job for this annotation

GitHub Actions / Test Packaging

'AdvertiseSystem' does not contain a definition for 'SayThankYou' and no accessible extension method 'SayThankYou' accepting a first argument of type 'AdvertiseSystem' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 101 in Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs

View workflow job for this annotation

GitHub Actions / Test Packaging

'AdvertiseSystem' does not contain a definition for 'SayThankYou' and no accessible extension method 'SayThankYou' accepting a first argument of type 'AdvertiseSystem' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 101 in Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

'AdvertiseSystem' does not contain a definition for 'SayThankYou' and no accessible extension method 'SayThankYou' accepting a first argument of type 'AdvertiseSystem' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 101 in Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

'AdvertiseSystem' does not contain a definition for 'SayThankYou' and no accessible extension method 'SayThankYou' accepting a first argument of type 'AdvertiseSystem' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 101 in Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

'AdvertiseSystem' does not contain a definition for 'SayThankYou' and no accessible extension method 'SayThankYou' accepting a first argument of type 'AdvertiseSystem' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 101 in Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

'AdvertiseSystem' does not contain a definition for 'SayThankYou' and no accessible extension method 'SayThankYou' accepting a first argument of type 'AdvertiseSystem' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 101 in Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

'AdvertiseSystem' does not contain a definition for 'SayThankYou' and no accessible extension method 'SayThankYou' accepting a first argument of type 'AdvertiseSystem' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 101 in Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

'AdvertiseSystem' does not contain a definition for 'SayThankYou' and no accessible extension method 'SayThankYou' accepting a first argument of type 'AdvertiseSystem' could be found (are you missing a using directive or an assembly reference?)
component.ShouldSayThankYou = false;
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
using Content.Server.Power.Components;
using Content.Shared.UserInterface;
using Content.Server.Advertise;
using Content.Server.Advertise.Components;
using Content.Server.Advertise.EntitySystems;
using static Content.Shared.Arcade.SharedSpaceVillainArcadeComponent;
using Robust.Server.GameObjects;
using Robust.Shared.Audio;
Expand Down Expand Up @@ -121,7 +123,7 @@

if (ent.Comp.ShouldSayThankYou && TryComp<AdvertiseComponent>(ent.Owner, out var advertise))
{
_advertise.SayThankYou(ent.Owner, advertise);

Check failure on line 126 in Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeSystem.cs

View workflow job for this annotation

GitHub Actions / Test Packaging

'AdvertiseSystem' does not contain a definition for 'SayThankYou' and no accessible extension method 'SayThankYou' accepting a first argument of type 'AdvertiseSystem' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 126 in Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeSystem.cs

View workflow job for this annotation

GitHub Actions / Test Packaging

'AdvertiseSystem' does not contain a definition for 'SayThankYou' and no accessible extension method 'SayThankYou' accepting a first argument of type 'AdvertiseSystem' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 126 in Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeSystem.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

'AdvertiseSystem' does not contain a definition for 'SayThankYou' and no accessible extension method 'SayThankYou' accepting a first argument of type 'AdvertiseSystem' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 126 in Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeSystem.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

'AdvertiseSystem' does not contain a definition for 'SayThankYou' and no accessible extension method 'SayThankYou' accepting a first argument of type 'AdvertiseSystem' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 126 in Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeSystem.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

'AdvertiseSystem' does not contain a definition for 'SayThankYou' and no accessible extension method 'SayThankYou' accepting a first argument of type 'AdvertiseSystem' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 126 in Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeSystem.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

'AdvertiseSystem' does not contain a definition for 'SayThankYou' and no accessible extension method 'SayThankYou' accepting a first argument of type 'AdvertiseSystem' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 126 in Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeSystem.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

'AdvertiseSystem' does not contain a definition for 'SayThankYou' and no accessible extension method 'SayThankYou' accepting a first argument of type 'AdvertiseSystem' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 126 in Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeSystem.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

'AdvertiseSystem' does not contain a definition for 'SayThankYou' and no accessible extension method 'SayThankYou' accepting a first argument of type 'AdvertiseSystem' could be found (are you missing a using directive or an assembly reference?)
ent.Comp.ShouldSayThankYou = false;
}
}
Expand Down
Loading