Notes

Notes

6M Downloads

Please mark Mod as Clientside only.

Claycorp opened this issue ยท 0 comments

commented

Depending on the Forge version you can specify it in the Main Mod annotation, with @Mod(clientSideOnly = true) or, if that's not available, use the manifest by adding this to your build.gradle:

jar {
    manifest {
        attributes 'ModSide': 'CLIENT'
    }
}