Fix server only, and broken test.
parent
b31ce4e525
commit
f113b0e312
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -9,6 +9,6 @@ public class ExampleMod implements ModInitializer {
|
|||
|
||||
@Override
|
||||
public void onInitialize() {
|
||||
LOGGER.info("Hello Fabric world!");
|
||||
LOGGER.info("Hello simple Fabric mod!");
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue