Compare commits

...

4 Commits

Author SHA1 Message Date
ix0rai f14d42efce
Merge 7236b8ec1a into ba9d235849 2024-03-25 12:37:33 -05:00
ix0rai 7236b8ec1a
add validation code 2024-03-25 12:37:11 -05:00
ix0rai d5e3a1a402
Merge branch 'QuiltMC:1.20.2' into patch-1 2024-03-25 12:34:24 -05:00
ix0rai 05277f8cc7
add a mod id const 2024-02-17 00:12:07 -06:00
1 changed files with 8 additions and 0 deletions

View File

@ -11,8 +11,16 @@ public class ExampleMod implements ModInitializer {
// That way, it's clear which mod wrote info, warnings, and errors.
public static final Logger LOGGER = LoggerFactory.getLogger("Example Mod");
// A central place to house your mod ID. This should match the ID in your quilt.mod.json file.
public static final String MOD_ID = "example_mod";
@Override
public void onInitialize(ModContainer mod) {
// the following block validates that you've updated both the quilt.mod.json file and MOD_ID field when you change your mod ID. if you're familiar with making mods, feel free to remove this!
if (!mod.metadata().id().equals(MOD_ID)) {
throw new RuntimeException(String.format("Mod IDs in quilt.mod.json and MOD_ID field do not match! (quilt.mod.json: %s; MOD_ID: %s", mod.metadata().id(), MOD_ID));
}
LOGGER.info("Hello Quilt world from {}!", mod.metadata().name());
}
}