Skip to content

Commit 1942660

Browse files
committed
Minimap: Fix radar restriction broken by 9649e47
Server-side radar restriction is now possible again Thanks to @pgimeno for this nice catch.
1 parent 9311d8a commit 1942660

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/hud.cpp

+7-6
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,12 @@ const struct EnumString es_HudElementStat[] =
4848

4949
const struct EnumString es_HudBuiltinElement[] =
5050
{
51-
{HUD_FLAG_HOTBAR_VISIBLE, "hotbar"},
52-
{HUD_FLAG_HEALTHBAR_VISIBLE, "healthbar"},
53-
{HUD_FLAG_CROSSHAIR_VISIBLE, "crosshair"},
54-
{HUD_FLAG_WIELDITEM_VISIBLE, "wielditem"},
55-
{HUD_FLAG_BREATHBAR_VISIBLE, "breathbar"},
56-
{HUD_FLAG_MINIMAP_VISIBLE, "minimap"},
51+
{HUD_FLAG_HOTBAR_VISIBLE, "hotbar"},
52+
{HUD_FLAG_HEALTHBAR_VISIBLE, "healthbar"},
53+
{HUD_FLAG_CROSSHAIR_VISIBLE, "crosshair"},
54+
{HUD_FLAG_WIELDITEM_VISIBLE, "wielditem"},
55+
{HUD_FLAG_BREATHBAR_VISIBLE, "breathbar"},
56+
{HUD_FLAG_MINIMAP_VISIBLE, "minimap"},
57+
{HUD_FLAG_MINIMAP_RADAR_VISIBLE, "minimap_radar"},
5758
{0, NULL},
5859
};

0 commit comments

Comments
 (0)