diff --git a/esoui/ingame/guild/keyboard/guildroster_keyboard.lua b/esoui/ingame/guild/keyboard/guildroster_keyboard.lua
index f0b0536..4bd8aad 100755
--- a/esoui/ingame/guild/keyboard/guildroster_keyboard.lua
+++ b/esoui/ingame/guild/keyboard/guildroster_keyboard.lua
@@ -97,7 +97,7 @@ function ZO_KeyboardGuildRosterManager:InitializeKeybindDescriptor()
             visible = function()
                 if(self.mouseOverRow) then
                     local data = ZO_ScrollList_GetData(self.mouseOverRow)
-                    if(data.hasCharacter and data.online and data.alliance == GetUnitAlliance("player") and not data.isLocalPlayer) then
+                    if(data.hasCharacter and data.online and not data.isLocalPlayer) then
                         return true
                     end
                 end
@@ -234,7 +234,6 @@ function ZO_KeyboardGuildRosterManager:GuildRosterRow_OnMouseUp(control, button,
                     if IsChatSystemAvailableForCurrentPlatform() then
                         AddMenuItem(GetString(SI_SOCIAL_LIST_SEND_MESSAGE), function() StartChatInput("", CHAT_CHANNEL_WHISPER, data.displayName) end)
                     end
-                    if(data.alliance == GetUnitAlliance("player")) then
                     AddMenuItem(GetString(SI_SOCIAL_MENU_INVITE), function() 
                         local NOT_SENT_FROM_CHAT = false
                         local DISPLAY_INVITED_MESSAGE = true
@@ -242,7 +241,6 @@ function ZO_KeyboardGuildRosterManager:GuildRosterRow_OnMouseUp(control, button,
                     end)
                     AddMenuItem(GetString(SI_SOCIAL_MENU_JUMP_TO_PLAYER), function() JumpToGuildMember(data.displayName) end)
                 end
-                end
                 AddMenuItem(GetString(SI_SOCIAL_MENU_SEND_MAIL), function() MAIL_SEND:ComposeMailTo(data.displayName) end)
 
                 if(not IsFriend(data.displayName)) then