Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -65,7 +65,7 @@ function _M:generateList() |
65 | 65 | local list = {} |
66 | 66 | |
67 | 67 | for i, act in ipairs(game.party.m_list) do |
68 | - if not act.no_inventory_access and act ~= game.player then | |
68 | + if not act.no_inventory_access and act ~= game.player and act:getInven(act.INVEN_INVEN) then | |
69 | 69 | list[#list+1] = {name=act.name..(act:canAddToInven(act.INVEN_INVEN) and "" or " #YELLOW#[NO ROOM]#LAST#"), actor=act} |
70 | 70 | end |
71 | 71 | end | ... | ... |
-
Please register or login to post a comment