How to sort items from your mod in vanilla creative tabs?

Started by villagernumber9 on

Topic category: Help with Minecraft modding (Java Edition)

Joined Apr 2025
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
How to sort items from your mod in vanilla creative tabs?
Tue, 04/22/2025 - 10:47 (edited)

I've seen a lot of posts about this saying it's impossible or just misunderstanding the question and saying Workspace>Edit element order. But I know for a fact you can put any modded item next to any vanilla item, since nearly every mod I've played with does this. I'm using Caverns and Chasms as an example here:

https://imgur.com/a/k0UprHD

So clearly it's possible, the question is how?  

 

Edited by villagernumber9 on Tue, 04/22/2025 - 10:47
Joined Dec 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
public void insertAfter…
Tue, 04/22/2025 - 10:59
    public void insertAfter(ItemStack existingEntry, ItemStack newEntry, CreativeModeTab.TabVisibility visibility) {
        assertStackCount(newEntry);
        if (isParentTab(visibility)) {
            this.assertTargetExists(this.parentEntries, existingEntry);
            this.assertNewEntryDoesNotAlreadyExists(this.parentEntries, newEntry);
            this.parentEntries.addAfter(existingEntry, newEntry);
        }

        if (isSearchTab(visibility)) {
            this.assertTargetExists(this.searchEntries, existingEntry);
            this.assertNewEntryDoesNotAlreadyExists(this.searchEntries, newEntry);
            this.searchEntries.addAfter(existingEntry, newEntry);
        }

    }
Joined Apr 2025
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Mind explaining how this…
Tue, 04/22/2025 - 11:15

Mind explaining how this works? I'm not very good with code

Joined Dec 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
H4sIAAAAAAAA/91XbWvjRhD…
Tue, 04/22/2025 - 11:29

H4sIAAAAAAAA/91XbWvjRhD+K1sVDhuClNDCEccx55eUhsZxiN1rS3WIlTR2trd6QbtSLIL/e2dXsiTL8jX5cHBXgYNmd96eZ0Y7m79fjJAGYAyMaQJUsgxW1L3JIJTGmSHzWO3ESeSBnyaAS14USrU5MF7skBDbcNaZbQzI+/dnpayM1Ipd29lGuenDmoVMsihUGtoDaSpuA16YDvGN4C8U17ZtG09SxmJgWT5kwKMYEmFuomjDwfSiwHJ55H3muaWsUXk0zGjCqMtB1K9EpaV9zae3EgL1RpivV+haQqIt9dvQ2hu9zjzItW2Qf9lwKRMWbpqGkrqK+wttvheaTqwGEA2y9gaqRA663GyK3IkPHKRS1vtrygXo9a2Wfz7XQt4QRsM1A+4TFbbIp/Y2CiMHtlWAoaVVR8MQF49yqbJ0BEhHVDhHwyCVVFW7VUqs5PPzs/n8kxklG+vi8vLS2j7JonqECSfmNIfEQb8tLE9UOIibyfxwA6nahzpC9XH8qFUwZ8oHNc0loozyFJrad4XDFsZ/aEYdL/LB2YDsZG+6mN3sK3mPi1WEoj91NTHUCQ6lYjtG5uS+hQ/SWt38uerMq+Z+8/1x/ypm1ImTRFw4bN1Jze0v553MaEZdFtIkd6JYdNqO//+cthBPTnLV2dRV3+E561J5MkpbFpg8BAitdjVbdNfp8PRgaIbG3udvlfByRLzt9Ag8hcuhnHeyrL3oHTVbhDm7Hc8X9zNn+cficfa2r+U7Y1MNza9E5fT35WoxH/wKnEcT9PHfvVsQWolVD5+guhoJmgsv4pzGAsrRnpRZnJwSpHxcWEcJqLovVaHINdEddvWOBvHVjxfnV3vFIG8qBfmhxq6SDpZxomSIgigszCPFHYSUE+qLqnWwVoavtGqke9Wd2wd9zZykYpm6wkuYC0nPTQWCO94wUTLni1n/MHjqcgxaxvY4FYLMc219xwTeUyEhL0dEfqjcas2j/UOvWcR8Ut56tX5vkjLu72/Lc6w/3pinhYLQGkRfzvododVTko8wtZqJMwYd/AZ5r2+qj0J9NfiKyw9UPvX6x52gHtiCl0o4tc3WpNfurB+uSZhyTrSB/lNn8EAThQ8nLQOB0RVgykLRdtI/hUrnpL2hFSRyrJq4bX3W7Ioz0uLQxN9HJpjLOJ4o5sP48eZ+5azGE2dxf/fXCaDdn5DC2a2/O1rdHR8MrYPgTSIerSPbUP/Z7OxwZ+w+/QvTFxLfYg0AAA==

Joined Dec 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
You can try this procedure
Tue, 04/22/2025 - 11:29

You can try this procedure

Joined Dec 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I have inserted my item to…
Tue, 04/22/2025 - 11:32

I have inserted my item to the diamond sword.

Joined Dec 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Have a good time   You can…
Tue, 04/22/2025 - 11:38

Have a good time

 

You can decode the code using convenientCopy plugin.

Please use the paste to recreate.