Skip to content
Snippets Groups Projects
Commit 6c56ce20 authored by dg's avatar dg
Browse files

When 'l'ooking around if you press enter you get a map menu just like when right clicking

git-svn-id: http://svn.net-core.org/repos/t-engine4@4753 51575b47-30f0-44d4-a5cc-537603b46e54
parent 320e55f3
No related branches found
No related tags found
No related merge requests found
......@@ -1475,7 +1475,13 @@ function _M:setupCommands()
LOOK_AROUND = function()
self.log("Looking around... (direction keys to select interesting things, shift+direction keys to move freely)")
local co = coroutine.create(function() self.player:getTarget{type="hit", no_restrict=true, range=2000} end)
local co = coroutine.create(function()
local x, y = self.player:getTarget{type="hit", no_restrict=true, range=2000}
if x and y then
local tmx, tmy = self.level.map:getTileToScreen(x, y)
self:registerDialog(MapMenu.new(tmx, tmy, x, y))
end
end)
local ok, err = coroutine.resume(co)
if not ok and err then print(debug.traceback(co)) error(err) end
end,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment