Skip to content

Commit

Permalink
skill issue
Browse files Browse the repository at this point in the history
  • Loading branch information
plykiya committed Jul 14, 2024
1 parent 0dfe6dc commit a173442
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ private void SpeechBubbleDied(EntityUid entity, SpeechBubble bubble)
private void EnqueueSpeechBubble(EntityUid entity, ChatMessage message, SpeechBubble.SpeechType speechType)
{
// Don't enqueue speech bubbles for other maps. TODO: Support multiple viewports/maps?
if (EntityManager.GetComponent<TransformComponent>(entity).MapID != _eyeManager.CurrentMap)
if (EntityManager.GetComponent<TransformComponent>(entity).MapID != _eye.CurrentMap)
return;

if (!_queuedSpeechBubbles.TryGetValue(entity, out var queueData))
Expand Down

0 comments on commit a173442

Please sign in to comment.