Right now on init there are two messages, one for the config and another for items. Both use stdout when they should be using a logger - create one on your mod class with Logger.getLogger(modid).
The second message is fine (although you should replace "sculkhornid" with "Sculk Horn" or something) but the first one is really ambiguous, and probably not necessary at all.
Right now on init there are two messages, one for the config and another for items. Both use stdout when they should be using a logger - create one on your mod class with
Logger.getLogger(modid)
.The second message is fine (although you should replace "sculkhornid" with "Sculk Horn" or something) but the first one is really ambiguous, and probably not necessary at all.