Skip to content

Item modification

Hempfest edited this page Aug 30, 2021 · 1 revision
		Items.findMaterial("stainedglass"); // This will locate stained glass for us regardless of legacy conditions!
		
		Items.edit(); // This is the start of an empty item edit builder!
		
		Items.edit(edit -> edit.setType(Material.DIRT).setTitle("&6Hello world!").build()); // This is the start of an item edit builder!