Skip to content

Commit 06206c8

Browse files
committed
fix map markers
1 parent 78e1551 commit 06206c8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

QSB/Player/PlayerMapMarker.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,10 @@ private bool ShouldBeVisible()
7171
_player.IsReady &&
7272
!_player.IsDead &&
7373
_player.Visible &&
74-
_player.InDreamWorld == QSBPlayerManager.LocalPlayer.InDreamWorld &&
75-
_player.IsInMoon == QSBPlayerManager.LocalPlayer.IsInMoon;
74+
!_player.InDreamWorld &&
75+
!_player.IsInMoon &&
76+
!_player.IsInBramble &&
77+
!_player.IsInCloak;
7678
}
7779

7880
public void LateUpdate()

0 commit comments

Comments
 (0)