Jump to content

Module:Keys: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

10 September 2025

  • curprev 20:4820:48, 10 September 2025 Felipe talk contribs 802 bytes +802 Created page with "-- taken from https://minecraft.wiki/w/Module:Keys local p = {} p.keys = function( f ) local args = f if f == mw.getCurrentFrame() then args = f:getParent().args end local keys = {} for _, key in ipairs( args ) do key = mw.text.trim( key ) if key ~= '+' and key:find( '%+' ) then local comboKeys = {} for comboKey in mw.text.gsplit( key, '%s*%+%s*' ) do table.insert( comboKeys, p.key( comboKey ) ) end table.insert( keys, table.concat( comboKey..."