Module:ReturnImageForTemplate

From Resonite Wiki
Revision as of 21:59, 10 February 2024 by 989onan (talk | contribs) (idk)

Example of how to use this is on Template:GetDirectionNodePage


local p = {}


function p.ReturnImage( frame )
  mw.logObject(frame:getParent());
  return frame.args[1] .. frame:getParent().args[1] .. frame.args[2];
end

return p