diff --git a/game/modules/tome/dialogs/MapMenu.lua b/game/modules/tome/dialogs/MapMenu.lua index d31a8f880c8e791233ebf92d60e50ef3b4306241..3aa86c92611377e8f53352a1425d7e415f6ad861 100644 --- a/game/modules/tome/dialogs/MapMenu.lua +++ b/game/modules/tome/dialogs/MapMenu.lua @@ -97,6 +97,17 @@ function _M:use(item) DebugConsole.line = "=__uids["..item.actor.uid.."]" DebugConsole.line_pos = #DebugConsole.line d.changed = true + elseif act == "debug-inventory" then + local d + d = item.actor:showEquipInven(item.actor.name..": Inventory", nil, function(o, inven, item, button, event) + if not o then return end + local ud = require("mod.dialogs.UseItemDialog").new(event == "button", item.actor, o, item, inven, function(_, _, _, stop) + d:generate() + d:generateList() + if stop then self:unregisterDialog(d) end + end) + self:registerDialog(ud) + end) end end @@ -128,6 +139,7 @@ function _M:generateList() if a and not self.on_player and game.party:canOrder(a, false) then list[#list+1] = {name="Give order", action="order", color=colors.simple(colors.TEAL), actor=a} end if a and not self.on_player and config.settings.cheat then list[#list+1] = {name="Target player", action="target-player", color=colors.simple(colors.RED), actor=a} end if a and config.settings.cheat then list[#list+1] = {name="Lua inspect", action="debug-inspect", color=colors.simple(colors.LIGHT_BLUE), actor=a} end + if a and config.settings.cheat then list[#list+1] = {name="Show inventory", action="debug-inventory", color=colors.simple(colors.YELLOW), actor=a} end if self.on_player then list[#list+1] = {name="Rest a while", action="rest", color=colors.simple(colors.ANTIQUE_WHITE)} end if self.on_player then list[#list+1] = {name="Auto-explore", action="autoexplore", color=colors.simple(colors.ANTIQUE_WHITE)} end if self.on_player then list[#list+1] = {name="Inventory", action="inventory", color=colors.simple(colors.ANTIQUE_WHITE)} end diff --git a/ideas/setting-eyal.ods b/ideas/setting-eyal.ods index db6b92b3df4cf120878b13cd01028198da1a1d0e..c09e1ac9d3ebffa8eb36a1eaab2bc123cf0dbbc2 100644 Binary files a/ideas/setting-eyal.ods and b/ideas/setting-eyal.ods differ