Creating fake mods
Suspicious activities
How to
Use the following methods in startup_scripts
:
Platform.registerFakeMod("<nonexistant_modid>").displayName("Some Display Name")
Example
Platform.registerFakeMod("notarealmodid").displayName("Hello World!")
onEvent('item.registry', event => {
event.create('notarealmodid:thing')
})

Last updated