From ecfb89c04be88f43633b88f3ee9f24c50bc7e510 Mon Sep 17 00:00:00 2001 From: DVRP Date: Thu, 12 Sep 2024 02:20:43 +0900 Subject: [PATCH] Fix blind name bug --- util.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.lua b/util.lua index 23b7957..654d2a1 100644 --- a/util.lua +++ b/util.lua @@ -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