Editing Module:Param Parse
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 677: | Line 677: | ||
} |
} |
||
-- Quest - for use by quest inventory items that are linked to a quest |
|||
-- Quest |
|||
function parse.quest_smw(quest) |
|||
if quest == 'No' then |
|||
return nil |
|||
end |
|||
⚫ | |||
end |
|||
parse.quest = { |
parse.quest = { |
||
name = ' |
name = 'quest_use', |
||
func = parse.has_content, |
func = parse.has_content, |
||
smw_property = 'Quest', |
smw_property = 'Quest use', |
||
smw_func = parse. |
smw_func = parse.has_content, |
||
category_incomplete = 'Needs quest' |
category_incomplete = 'Needs quest' |
||
} |
|||
-- Quest_use, for use by backpack items that involved in quests |
|||
parse.quest_use = { |
|||
name = 'quest_use', |
|||
⚫ | |||
smw_property = 'Quest use', |
|||
smw_func = parse.has_content, |
|||
} |
} |
||