diff --git a/esoui/ingame/group/groupcenterinfo.xml b/esoui/ingame/group/groupcenterinfo.xml
deleted file mode 100755
index 74edcd0..0000000
--- a/esoui/ingame/group/groupcenterinfo.xml
+++ /dev/null
@@ -1,113 +0,0 @@
-<GuiXml>
-    <Controls>
-        <Button name="ZO_VeteranDifficultyButton" virtual="true">
-            <Dimensions x="32" y="32"/>
-            <OnMouseEnter>
-                ZO_VeteranDifficultyButton_OnMouseEnter(self)
-            </OnMouseEnter>
-
-            <OnMouseExit>
-                ZO_VeteranDifficultyButton_OnMouseExit(self)
-            </OnMouseExit>
-
-            <OnClicked>
-                ZO_VeteranDifficultyButton_OnClicked(self)
-            </OnClicked>
-        </Button>
-
-        <TopLevelControl name="ZO_GroupCenterInfo" resizeToFitDescendents="true" hidden="true">
-            <Anchor point="TOP" relativeTo="ZO_GroupList" />
-            <Controls>
-                <Control name="ZO_VeteranDifficultySettings" resizeToFitDescendents="true">
-                    <Anchor point="TOPLEFT" />
-                    <OnInitialized>
-                        ZO_VeteranDifficultySettings_OnInitialized(self)
-                    </OnInitialized>
-
-                    <Controls>
-                        <Texture name="$(parent)Help" textureFile="EsoUI/Art/Miscellaneous/help_icon.dds" mouseEnabled="true" layer="OVERLAY">
-                            <Anchor point="TOPLEFT"/>
-                            <Dimensions x="32" y="32"/>
-                            <OnMouseEnter>
-                                InitializeTooltip(InformationTooltip, self, RIGHT, -5, 0)
-                                SetTooltipText(InformationTooltip, GetString(SI_DUNGEON_DIFFICULTY_HELP_TOOLTIP))
-                            </OnMouseEnter>
-
-                            <OnMouseExit>
-                                ClearTooltip(InformationTooltip)
-                            </OnMouseExit>
-                        </Texture>
-
-                        <Label name="$(parent)Text" font="ZoFontGameLargeBold" color="INTERFACE_COLOR_TYPE_TEXT_COLORS:INTERFACE_TEXT_COLOR_NORMAL" text="SI_DUNGEON_DIFFICULTY_HEADER">
-                            <Anchor point="LEFT" relativeTo="$(parent)Help" relativePoint="RIGHT" offsetX="5"/>
-                        </Label>
-
-                        <Button name="$(parent)NormalDifficulty" inherits="ZO_VeteranDifficultyButton">
-                            <Anchor point="TOP" relativeTo="$(parent)Text" relativePoint="BOTTOM" offsetX="-16" offsetY="-2" />
-
-                            <Textures
-                                normal="EsoUI/Art/LFG/LFG_normalDungeon_up.dds"
-                                pressed="EsoUI/Art/LFG/LFG_normalDungeon_down.dds"
-                                mouseOver="EsoUI/Art/LFG/LFG_normalDungeon_over.dds"
-                                disabled="EsoUI/Art/LFG/LFG_normalDungeon_disabled.dds"
-                                disabledPressed="EsoUI/Art/LFG/LFG_normalDungeon_down_disabled.dds"
-                    />
-
-                            <OnInitialized>
-                                self.isVeteranDifficulty = false
-                            </OnInitialized>
-                        </Button>
-                        <Button name="$(parent)VeteranDifficulty" inherits="ZO_VeteranDifficultyButton">
-                            <Anchor point="TOP" relativeTo="$(parent)Text" relativePoint="BOTTOM" offsetX="16" offsetY="-2" />
-
-                            <Textures
-                                normal="EsoUI/Art/LFG/LFG_veteranDungeon_up.dds"
-                                pressed="EsoUI/Art/LFG/LFG_veteranDungeon_down.dds"
-                                mouseOver="EsoUI/Art/LFG/LFG_veteranDungeon_over.dds"
-                                disabled="EsoUI/Art/LFG/LFG_veteranDungeon_disabled.dds"
-                                disabledPressed="EsoUI/Art/LFG/LFG_veteranDungeon_down_disabled.dds"
-                    />
-
-                            <OnInitialized>
-                                self.isVeteranDifficulty = true
-                            </OnInitialized>
-                        </Button>
-                    </Controls>
-                </Control>
-                
-                <Control name="ZO_GroupReviveCounter" resizeToFitDescendents="true" hidden="true">
-                    <Anchor point="TOPLEFT" relativeTo="ZO_VeteranDifficultySettings" relativePoint="TOPRIGHT" offsetX="35" offsetY="4" />
-                    <OnInitialized>
-                        ZO_GroupReviveCounter_OnInitialized(self)
-                    </OnInitialized>
-                    <Controls>
-                        <Label name="$(parent)Label" text="SI_GROUP_LIST_PANEL_REVIVE_COUNTER_LABEL" font="ZoFontGameLargeBold" color="INTERFACE_COLOR_TYPE_TEXT_COLORS:INTERFACE_TEXT_COLOR_NORMAL">
-                            <Anchor point="TOPRIGHT"/>
-                        </Label>
-                        
-                        <Label name="$(parent)Count" font="ZoFontGameLargeBold">
-                            <Anchor point="TOP" relativeTo="$(parent)Label" relativePoint="BOTTOM" offsetY="1" />
-                        </Label>
-
-                        <Texture name="$(parent)Icon" textureFile="EsoUI/Art/Death/death_soulReservoir_icon.dds">
-                            <Dimensions x="24" y="24"/>
-                            <Anchor point="TOP" relativeTo="$(parent)Label" relativePoint="BOTTOM" offsetX="24" offsetY="1" />
-                        </Texture>
-                        
-                        <Control name="$(parent)TooltipControl" mouseEnabled="true">
-                            <Anchor point="TOPLEFT" relativeTo="$(parent)Count" />
-                            <Anchor point="BOTTOMRIGHT" relativeTo="$(parent)Icon" />
-
-                            <OnMouseEnter>
-                                ZO_GroupReviveCounter_ShowHelpTooltip(self)
-                            </OnMouseEnter>
-                            <OnMouseExit>
-                                ZO_GroupReviveCounter_HideHelpTooltip()
-                            </OnMouseExit>
-                        </Control>
-                    </Controls>
-                </Control>
-            </Controls>
-        </TopLevelControl>
-    </Controls>
-</GuiXml>
\ No newline at end of file