Skip to content

Commit

Permalink
Fix blind name bug
Browse files Browse the repository at this point in the history
  • Loading branch information
dvrp0 committed Sep 11, 2024
1 parent b8a285d commit ecfb89c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util.lua
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ end
function Distro.get_blind_name()
local key = G.GAME.blind.config.blind.key
local name = G.P_BLINDS[key].name
local is_vanilla = Distro.blinds[key]
local is_vanilla = get_index(Distro.blinds, key)

if Distro.lang and Distro.lang.descriptions.Blind[key] then
name = Distro.lang.descriptions.Blind[key].name
Expand Down

0 comments on commit ecfb89c

Please sign in to comment.