Revert "feat(B.5): pickup feedback chat line + toast ("You pick up the X.")"

This reverts commit 87ba5c9a98.
This commit is contained in:
Erik 2026-05-14 17:02:29 +02:00
parent 7be13938bc
commit 20ecb23396
2 changed files with 2 additions and 32 deletions

View file

@ -1921,17 +1921,6 @@ public sealed class GameWindow : IDisposable
_liveSession.PlayerKilledReceived += pk =>
Chat.OnPlayerKilled(pk.DeathMessage, pk.VictimGuid, pk.KillerGuid);
// B.5 polish (2026-05-14): surface successful pickups as a
// retail-style "You pick up the X." system chat line plus a
// toast. PickupEvent fires BEFORE the EntityDeleted despawn
// chain so the entity-name lookup still hits.
_liveSession.EntityPickedUp += parsed =>
{
string name = DescribeLiveEntity(parsed.Guid);
Chat.OnSystemMessage($"You pick up the {name}.", chatType: 0);
_debugVm?.AddToast($"Picked up: {name}");
};
_liveSession.TurbineChatReceived += parsed =>
{
if (parsed.Body is AcDream.Core.Net.Messages.TurbineChat.Payload.EventSendToRoom ev)