}
}
if(!draw && pos.entityHit == null) {
profiler.startSection("wikiLookup");
IWikiProvider provider = WikiHooks.getWikiFor(block);
String url = provider.getWikiURL(mc.theWorld, pos);
if(url != null && !url.isEmpty()) {
String name = provider.getBlockName(mc.theWorld, pos);
String wikiName = provider.getWikiName(mc.theWorld, pos);
drawStr = name + " @ " + EnumChatFormatting.AQUA + wikiName;
draw = true;
}
profiler.endSection();
}