Fix mushroom stem render, cleanup System.out uses
This commit is contained in:
parent
48ba0b2e41
commit
332292c42c
45 changed files with 197 additions and 161 deletions
|
|
@ -91,7 +91,7 @@ public class BukkitVersionHelperSpigot118 extends BukkitVersionHelper {
|
|||
String bn = id.toString();
|
||||
if (bn != null) {
|
||||
names.add(bn);
|
||||
System.out.println("block=" + bn);
|
||||
Log.info("block=" + bn);
|
||||
}
|
||||
}
|
||||
return names.toArray(new String[0]);
|
||||
|
|
@ -294,21 +294,21 @@ public class BukkitVersionHelperSpigot118 extends BukkitVersionHelper {
|
|||
|
||||
@Override
|
||||
public Object getUnloadQueue(World world) {
|
||||
System.out.println("getUnloadQueue not implemented yet");
|
||||
Log.warning("getUnloadQueue not implemented yet");
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isInUnloadQueue(Object unloadqueue, int x, int z) {
|
||||
System.out.println("isInUnloadQueue not implemented yet");
|
||||
Log.warning("isInUnloadQueue not implemented yet");
|
||||
// TODO Auto-generated method stub
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object[] getBiomeBaseFromSnapshot(ChunkSnapshot css) {
|
||||
System.out.println("getBiomeBaseFromSnapshot not implemented yet");
|
||||
Log.warning("getBiomeBaseFromSnapshot not implemented yet");
|
||||
// TODO Auto-generated method stub
|
||||
return new Object[256];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -47,7 +47,6 @@ public class MapChunkCache118 extends GenericMapChunkCache {
|
|||
*/
|
||||
public MapChunkCache118(GenericChunkCache cc) {
|
||||
super(cc);
|
||||
init();
|
||||
}
|
||||
|
||||
// Load generic chunk from existing and already loaded chunk
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue