Skip to content

Commit

Permalink
Fix issue #184 - additional changes
Browse files Browse the repository at this point in the history
  • Loading branch information
IrcDirk committed Sep 14, 2021
1 parent c830837 commit 445b47c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Carbonite/NxMap.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2324,7 +2324,7 @@ function Nx.Map:MinimapUpdate()
al = 1
end

if IsControlKeyDown() then
if IsControlKeyDown() or IsIndoors() or Nx.Map.Indoors then
al = IsAltKeyDown() and 1 or .8
self.MMZoomChanged = true
end
Expand Down Expand Up @@ -4044,7 +4044,9 @@ function Nx.Map.OnUpdate (this, elapsed) --V4 this
end
end

if IsIndoors() or Nx.Map.Indoors then map.BackgndAlphaTarget = map.BackgndAlphaFull end
if IsIndoors() or Nx.Map.Indoors then
map.BackgndAlphaTarget = map.BackgndAlphaFull
end

-- Check quest window
if Nx.Quest then
Expand Down

0 comments on commit 445b47c

Please sign in to comment.