Fix itemCtorArgs javadoc in registerBlock

This commit is contained in:
tterrag1098 2015-04-06 19:17:58 -04:00 committed by cpw
parent 4af2ba3949
commit 592c9c8e42
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ public class GameRegistry
* @param block The block to register
* @param itemclass The item type to register with it : null registers a block without associated item.
* @param name The mod-unique name to register it as, will get prefixed by your modid.
* @param itemCtorArgs Arguments to pass to the ItemBlock constructor (optional).
* @param itemCtorArgs Arguments to pass (after the required {@code Block} parameter) to the ItemBlock constructor (optional).
*/
public static Block registerBlock(Block block, Class<? extends ItemBlock> itemclass, String name, Object... itemCtorArgs)
{