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

oups

git-svn-id: http://svn.net-core.org/repos/t-engine4@2123 51575b47-30f0-44d4-a5cc-537603b46e54
parent 3a0a12e8
No related branches found
No related tags found
No related merge requests found
......@@ -81,12 +81,12 @@ function _M:loadMap(file)
end,
addSpot = function(dst, type, subtype, additional)
local spot = {x=dst[1], y=dst[2], type=type or "static", subtype=subtype or "static"}
table.update(spot, additional)
table.update(spot, additional or {})
self.spots[#self.spots+1] = spot
end,
addZone = function(dst, type, subtype, additional)
local zone = {x1=dst[1], y1=dst[2], x2=dst[3], y2=dst[4], type=type or "static", subtype=subtype or "static"}
table.update(zone, additional)
table.update(zone, additional or {})
self.level.custom_zones = self.level.custom_zones or {}
self.level.custom_zones[#self.level.custom_zones+1] = zone
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