Skip to content

Commit 13f8d1a

Browse files
committedApr 10, 2015
Thanks, Sangar.
1 parent 06abfb2 commit 13f8d1a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

Diff for: ‎build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ computronics.version=1.4.7
66
enderio.version=1.7.10-2.2.8.343
77
forestry.version=forestry_1.7.10:3.4.0.7
88
gregtech.version=gregtech_1.7.10:5.07.07
9-
oc.version=MC1.7.10-1.5.7.532-dev
9+
oc.version=MC1.7.10-1.5.7.536-dev
1010
waila.version=1.5.8a_1.7.10

Diff for: ‎src/main/java/pl/asie/computronics/oc/manual/ComputronicsPathProvider.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ public class ComputronicsPathProvider implements PathProvider {
2222

2323
public static void initialize() {
2424
Manual.addProvider(new ComputronicsPathProvider());
25-
Manual.addProvider(new ResourceContentProvider("computronics", "doc/computronics/"));
25+
Manual.addProvider(new ResourceContentProvider("computronics", "doc/"));
2626
Manual.addTab(findTabIconRenderer(),
27-
"tooltip.computronics.manual.tab.blocks", "%LANGUAGE%/block/index.md");
28-
Manual.addTab(new TextureTabIconRenderer(new ResourceLocation("computronics", "textures/items/tape_greg.png")),
29-
"tooltip.computronics.manual.tab.items", "%LANGUAGE%/item/index.md");
27+
"tooltip.computronics.manual.tab.blocks", "computronics/%LANGUAGE%/block/index.md");
28+
Manual.addTab(new TextureTabIconRenderer(new ResourceLocation("computronics", "textures/items/tape_steel.png")),
29+
"tooltip.computronics.manual.tab.items", "computronics/%LANGUAGE%/item/index.md");
3030
}
3131

3232
private static TabIconRenderer findTabIconRenderer() {
@@ -81,6 +81,6 @@ public String pathFor(World world, int x, int y, int z) {
8181
}
8282

8383
private String makePath(String type, String documentationName) {
84-
return "%LANGUAGE%/" + type + "/" + documentationName + ".md";
84+
return "computronics/%LANGUAGE%/" + type + "/" + documentationName + ".md";
8585
}
8686
}

0 commit comments

Comments
 (0)
Please sign in to comment.