Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
838 B · 34 lines
C
at master
12345678910111213141516171819202122232425262728293031323334#pragma once
class LevelObjectInputStream;
/*
4J This code is not used.
class LevelObjectInputStream : ObjectInputStream{ private Set<String> autoReplacers = new HashSet<String>();
public LevelObjectInputStream(InputStream in) throws IOException { super(in);
autoReplacers.add("com.mojang.minecraft.player.Player$1"); autoReplacers.add("com.mojang.minecraft.mob.Creeper$1"); autoReplacers.add("com.mojang.minecraft.mob.Skeleton$1"); }
protected: ObjectStreamClass readClassDescriptor() // 4J - throws IOException, ClassNotFoundException { ObjectStreamClass osc = super.readClassDescriptor();
if (autoReplacers.contains(osc.getName())) { return ObjectStreamClass.lookup(Class.forName(osc.getName())); } return osc; }}*/