Module:QuestDetails: Difference between revisions
Jump to navigation
Jump to search
Content added Content deleted
mNo edit summary |
mNo edit summary |
||
Line 7: | Line 7: | ||
if args.start_point then |
if args.start_point then |
||
mw.smw.set({ |
mw.smw.set({ |
||
["start_point"] = args.start_point, |
["start_point"] = tostring(args.start_point), |
||
}) |
}) |
||
end |
end |
||
if args.requirements then |
if args.requirements then |
||
mw.smw.set({ |
mw.smw.set({ |
||
["requirements"] = args.requirements, |
["requirements"] = tostring(args.requirements), |
||
}) |
}) |
||
end |
end |
||
if args.recommended then |
if args.recommended then |
||
mw.smw.set({ |
mw.smw.set({ |
||
["recommended"] = args.recommended, |
["recommended"] = tostring(args.recommended), |
||
}) |
}) |
||
end |
end |
||
if args.enemies then |
if args.enemies then |
||
mw.smw.set({ |
mw.smw.set({ |
||
["enemies"] = args.enemies, |
["enemies"] = tostring(args.enemies), |
||
}) |
}) |
||
end |
end |