Code: Select all
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)
self.spots[#self.spots+1] = spot
end,
Moderator: Moderator
Code: Select all
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)
self.spots[#self.spots+1] = spot
end,
<DarkGod> lets say it's intended
<DarkGod> lets say it's intended