Module:QuestDetails: Difference between revisions

Jump to navigation Jump to search
Content added Content deleted
(visual improvements)
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"] = tostring(args.start_point),
["start_point"] = args.start_point,
})
})
end
end
if args.requirements then
if args.requirements then
mw.smw.set({
mw.smw.set({
["requirements"] = tostring(args.requirements),
["requirements"] = args.requirements,
})
})
end
end
if args.recommended then
if args.recommended then
mw.smw.set({
mw.smw.set({
["recommended"] = tostring(args.recommended),
["recommended"] = args.recommended,
})
})
end
end
if args.enemies then
if args.enemies then
mw.smw.set({
mw.smw.set({
["enemies"] = tostring(args.enemies),
["enemies"] = args.enemies,
})
})
end
end