* feature: Add create casings, shadow and radiance Added recipes for create: - shadow steel casing - refined radiance casing closes #2224 * fix: radiant casing recipe - Fixed and changed radiant casing recipe - Moved adding to create tab logic to a dedicated file for organization - Added constants.js for tab names to prevent typos and improve maintainability * Changed radiant casing recipe to glowstone plate --------- Co-authored-by: Redeix <brayden.j.m.ford@gmail.com>
7 lines
166 B
JavaScript
7 lines
166 B
JavaScript
// priority: 0
|
|
"use strict";
|
|
|
|
function modifyCreateCreativeTab(event) {
|
|
event.add('create:shadow_steel_casing')
|
|
event.add('create:refined_radiance_casing')
|
|
}
|