Removed Debug output
This commit is contained in:
parent
96820cff84
commit
89516870c9
3 changed files with 2 additions and 13 deletions
|
@ -30,12 +30,6 @@ public class BCLib implements ModInitializer {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onInitialize() {
|
public void onInitialize() {
|
||||||
System.out.println(ModUtil.convertModVersion("1.2"));
|
|
||||||
System.out.println(ModUtil.convertModVersion("1.2.3"));
|
|
||||||
System.out.println(ModUtil.convertModVersion("1.2.3-4.5"));
|
|
||||||
|
|
||||||
var mods = ModUtil.getMods();
|
|
||||||
mods.entrySet().forEach(e->System.out.println(e.getKey() + ": " + ModUtil.getModVersion(e.getKey()) +" - " + ModUtil.convertModVersion(ModUtil.convertModVersion(e.getValue().getVersion()))));
|
|
||||||
BaseRegistry.register();
|
BaseRegistry.register();
|
||||||
GeneratorOptions.init();
|
GeneratorOptions.init();
|
||||||
BaseBlockEntities.register();
|
BaseBlockEntities.register();
|
||||||
|
|
|
@ -31,12 +31,8 @@ public class BlocksHelper {
|
||||||
public static final Direction[] HORIZONTAL = makeHorizontal();
|
public static final Direction[] HORIZONTAL = makeHorizontal();
|
||||||
public static final Direction[] DIRECTIONS = Direction.values();
|
public static final Direction[] DIRECTIONS = Direction.values();
|
||||||
|
|
||||||
private static final ThreadLocal<MutableBlockPos> TL_POS = new ThreadLocal<>(){
|
private static final ThreadLocal<MutableBlockPos> TL_POS = ThreadLocal.withInitial(() -> new MutableBlockPos());
|
||||||
@Override
|
|
||||||
protected MutableBlockPos initialValue() {
|
|
||||||
return new MutableBlockPos();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
protected static final BlockState AIR = Blocks.AIR.defaultBlockState();
|
protected static final BlockState AIR = Blocks.AIR.defaultBlockState();
|
||||||
protected static final BlockState WATER = Blocks.WATER.defaultBlockState();
|
protected static final BlockState WATER = Blocks.WATER.defaultBlockState();
|
||||||
|
|
||||||
|
|
|
@ -372,7 +372,6 @@ public class ModUtil {
|
||||||
private static void accept(Path file) {
|
private static void accept(Path file) {
|
||||||
try {
|
try {
|
||||||
URI uri = URI.create("jar:" + file.toUri());
|
URI uri = URI.create("jar:" + file.toUri());
|
||||||
System.out.println(uri);
|
|
||||||
|
|
||||||
FileSystem fs;
|
FileSystem fs;
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue