Hi, I'm new to Minecraft modding. I am looking to add some distant terrain beyond the loaded chunks. Objects will be drawn with the tessellator from code. I need some advice on what the best way to do this would be. At first I thought I could create pieces of the terrain as Blocks and register it for rendering, but I felt it wouldn't provide any benefit (since I will be coding my own culling, probably coding my own lighting, not using JSON models), so I thought hooking directly to the renderer would be the best choice. It seems like the best way to do that would be to listen for the RenderTickEvent, but I was reading on this thread (http://www.minecraftforge.net/forum/index.php?topic=23500.0), that this event fires even in the menu before the world is loaded. It was suggested in that thread to hook directly into PlayerTickEvent, but I don't think that's the best choice for what I want to do. Before I dig deep into how to get this working, can I get some advice on what the best approach would be?