Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 1 addition & 12 deletions MY_Cataclysm/src/MY_CataclysmParty.lua
Original file line number Diff line number Diff line change
Expand Up @@ -525,21 +525,10 @@ function MY_CataclysmParty_Base.OnItemRButtonClick()
local t = {}
InsertTargetMenu(t, dwID)
for _, v in ipairs(t) do
if v.szOption == g_tStrings.LOOKUP_INFO or v.szOption == g_tStrings.STR_LOOKUP_MORE then
for _, vv in ipairs(v) do
if vv.szOption == g_tStrings.LOOKUP_NEW_TANLENT then -- ÆæÑ¨
table.insert(menu, vv)
break
end
end
end
if v.szOption == g_tStrings.STR_MAKE_TRADDING then -- ½»Ò×
if v.szOption == g_tStrings.STR_MAKE_TRADDING then
table.insert(menu, v)
end
end
table.insert(menu, { szOption = g_tStrings.STR_LOOKUP, bDisable = not info.bOnline, fnAction = function()
X.ViewOtherPlayerByID(dwID)
end })
if MY_CharInfo and MY_CharInfo.ViewCharInfoToPlayer then
table.insert(menu, {
szOption = g_tStrings.STR_LOOK .. g_tStrings.STR_EQUIP_ATTR, bDisable = not info.bOnline, fnAction = function()
Expand Down
Loading