Module:GetRandomCreature: Difference between revisions

m
no edit summary
No edit summary
mNo edit summary
Line 1: Line 1:
local p = {}
local p = {}
function p.parse(frame)
function p.parse(frame)
     return 'Hello, my ' .. frame.args[1] .. ' is ' .. frame.args[2]
     return string.gsub(frame.args[1],"(%&)(%w)", "%1")
end
end
return p
return p