Enderman Evolution soul vials not added to creative tab.
Renari opened this issue ยท 4 comments
Issue Description:
Enderman evolution soul vials do not show up in the soul vials creative tab.
What happens:
Soul vials are missing, for this mod but show for others.
What you expected to happen:
Soul vials to be in the soul vials creative tab.
Steps to reproduce:
- Install enderio and enderman evolution.
- Go to the soul vials creative tab.
- These soul vials are missing.
...
Affected Versions (Do not use "latest"):
- EnderIO: 5.0.4
- EnderCore: 1.12.2-0.5.45
- Minecraft: 1.12.2
- Forge: 8.0.99.99
- Enderman Evolution: 1.12.2-1.0.16
- SpongeForge? no
- Optifine? no
- Single Player and/or Server? Single
Does not appear that way, they extend EntityEnderman.
https://github.com/p455w0rd/EndermanEvolution/blob/master/src/main/java/p455w0rd/endermanevo/entity/EntityEvolvedEnderman.java
I was able to find this looking through a second time.
for soul in <enderio:item_soul_vial>.definition.getSubItems(<creativetab:enderio.mobs>) {
if (soul.hasTag) {
JEI.hide(soul);
}
}
Apparently this hides all soul vials except 10 or so, I was under the assumption they were not being added to the creative tab. It seems they are so I'm not sure why they are not being hidden.