Skip to content

Commit

Permalink
Update BlockGame.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Fansana authored Nov 13, 2024
1 parent 891b153 commit 7b9baf3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Content.Server/Arcade/BlockGame/BlockGame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ private void InvokeGameover()
{
_highScorePlacement = _arcadeSystem.RegisterHighScore(meta.EntityName, Points);
SendHighscoreUpdate();
var ev = new MoodEffectEvent("ArcadePlay");

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

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

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

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

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

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

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

View workflow job for this annotation

GitHub Actions / YAML Linter

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

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

View workflow job for this annotation

GitHub Actions / YAML Linter

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

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

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

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

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

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

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

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

View workflow job for this annotation

GitHub Actions / Test Packaging

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

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

View workflow job for this annotation

GitHub Actions / Test Packaging

The type or namespace name 'MoodEffectEvent' could not be found (are you missing a using directive or an assembly reference?)
_entityManager.EventBus.RaiseLocalEvent(meta.Owner, ev);
}
SendMessage(new BlockGameMessages.BlockGameGameOverScreenMessage(Points, _highScorePlacement?.LocalPlacement, _highScorePlacement?.GlobalPlacement));
var ev = new MoodEffectEvent("ArcadePlay");
_entityManager.EventBus.RaiseLocalEvent(meta.Owner, ev);
}

/// <summary>
Expand Down

0 comments on commit 7b9baf3

Please sign in to comment.