Module:ItemData/nav: Difference between revisionsGive feedback
m write_item_slot_subgroup created type parameter |
m fixed min_souls and max_souls params not being passed correctly from get_item_nav_bulletpoints and get_item_nav_cards |
||
| Line 71: | Line 71: | ||
local frame = slot | local frame = slot | ||
slot = frame.args[1] | slot = frame.args[1] | ||
min_souls = frame.args[2] | |||
max_souls = frame.args[3] | |||
debug_mode = frame.args["debug_mode"] | debug_mode = frame.args["debug_mode"] | ||
end | end | ||
| Line 92: | Line 94: | ||
local frame = slot | local frame = slot | ||
slot = frame.args[1] | slot = frame.args[1] | ||
min_souls = frame.args[2] | |||
max_souls = frame.args[3] | |||
debug_mode = frame.args["debug_mode"] | debug_mode = frame.args["debug_mode"] | ||
end | end | ||
| Line 142: | Line 146: | ||
return process_debug_mode(ret, debug_mode) | return process_debug_mode(ret, debug_mode) | ||
end | end | ||
return p | return p | ||