← Back to team overview

widelands-dev team mailing list archive

Re: [Merge] lp:~widelands-dev/widelands/bug-1810062-territorial-calculations into lp:widelands

 

I am done with my changes.

LuaField already had a __hash function, but I replaced it with a more efficient one. This means that we now need to test the Atlantean scenario and Trident of Fire on multiplayer.

The port spaces can be accessed like this:

   for index, value in ipairs(map.port_spaces) do
      print(index)
      print("x: " .. value["x"])
      print("y: " .. value["y"])
      for key, val in pairs(value) do
         print(key .. " " .. val)
      end
   end
-- 
https://code.launchpad.net/~widelands-dev/widelands/bug-1810062-territorial-calculations/+merge/361366
Your team Widelands Developers is subscribed to branch lp:~widelands-dev/widelands/bug-1810062-territorial-calculations.


References