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
|
|
@ -104,7 +104,7 @@ public class DynmapMod
|
|||
// ForgeChunkManager.setForcedChunkLoadingCallback(DynmapMod.instance, new LoadingCallback());
|
||||
//}
|
||||
//else {
|
||||
// System.out.println("[Dynmap] World loading using forced chunks is disabled");
|
||||
// Log.warning("[Dynmap] World loading using forced chunks is disabled");
|
||||
//}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1486,7 +1486,6 @@ public class DynmapPlugin
|
|||
core.setMinecraftVersion(mcver);
|
||||
core.setDataFolder(dataDirectory);
|
||||
core.setServer(fserver);
|
||||
ForgeMapChunkCache.init();
|
||||
core.setTriggerDefault(TRIGGER_DEFAULTS);
|
||||
core.setBiomeNames(getBiomeNames());
|
||||
|
||||
|
|
@ -1503,7 +1502,7 @@ public class DynmapPlugin
|
|||
|
||||
private static int test(CommandSource source) throws CommandSyntaxException
|
||||
{
|
||||
System.out.println(source.toString());
|
||||
Log.warning(source.toString());
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -28,7 +28,6 @@ public class ForgeMapChunkCache extends GenericMapChunkCache {
|
|||
*/
|
||||
public ForgeMapChunkCache(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