Fix server only, and broken test.

dev/0.11
modmuss50 2022-01-19 20:54:24 +00:00
parent b31ce4e525
commit f113b0e312
2 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ public class MinecraftLibraryProvider {
// Client only library, or legacy version
project.getDependencies().add(Constants.Configurations.MINECRAFT_DEPENDENCIES, library.name());
} else {
throw new RuntimeException("Library %s was not added to a configuration".formatted(library.name()));
project.getLogger().debug("Minecraft library ({}) was not added to any configuration", library.name());
}
}

View File

@ -9,6 +9,6 @@ public class ExampleMod implements ModInitializer {
@Override
public void onInitialize() {
LOGGER.info("Hello Fabric world!");
LOGGER.info("Hello simple Fabric mod!");
}
}