I wanted to remove the Traveler's Compass tab because it litterally only has one item
and I'm replacing it with all the compasses available in my modpack
the problem is it does not seem to be removing the travelers compass tab from the game.
Any idea why?
// Compasses Tab
StartupEvents.modifyCreativeTab('travelerscompass:tab', event => {
event.remove
})
StartupEvents.registry('creative_mode_tab', e => {
e.create('compasses')
.icon(() => 'travelerscompass:travelerscompass')
.content(() => [
'recovery_compass',
'travelerscompass:travelerscompass',
'naturescompass:naturescompass',
'explorerscompass:explorerscompass',
'irons_spellbooks:wayward_compass'
])
.displayName('Special Compasses')
})```