Commit 4b564b9b2405f82acc48158ab18c651593d0e03e
1 parent
e814dba1
update MCPTEST and README.md
Showing
2 changed files
with
11 additions
and
8 deletions
README.md
... | ... | @@ -3,20 +3,23 @@ LiteLoader |
3 | 3 | |
4 | 4 | Important Setup Note |
5 | 5 | -------------------- |
6 | -MCP 9.08 does not include the latest MCPBot mappings, since developing mods without these updated | |
6 | +MCP 9.10 does not include the latest MCPBot mappings, since developing mods without these updated | |
7 | 7 | mappings is a massive nuisance LiteLoader is built using a recent snapshot of the MCP mappings. |
8 | 8 | |
9 | +The latest MCPTEST mappings can always be retrieved from [http://mcpbot.bspk.rs/testcsv/](http://mcpbot.bspk.rs/testcsv/) | |
10 | + | |
9 | 11 | Getting the updated mappings |
10 | 12 | ---------------------------- |
11 | 13 | |
12 | 14 | To get the updated mappings, perform these steps **before** decompiling minecraft for the first |
13 | 15 | time. If you have already decompiled minecraft, run the MPC **cleanup** task first to remove the |
14 | -invalid sources. | |
16 | +invalid sources, or simply delete the *temp* and *src* directories from your MCP installation. | |
15 | 17 | |
16 | -- Using a text editor, open **/mcp908/conf/mcp.conf** | |
18 | +- Using a text editor, open **/mcp910/conf/mcp.conf** | |
17 | 19 | - Locate the setting **UpdateUrl** and change the domain to *dl.liteloader.com* as shown |
18 | 20 | |
19 | 21 | UpdateUrl = http://dl.liteloader.com/files/mcprolling_{version}/ |
20 | 22 | |
21 | -- Save the file and run the **updatemcp** script, it should prompt you to download 6 files. | |
22 | -- Run **decompile** as normal | |
23 | 23 | \ No newline at end of file |
24 | +- Save the file and run the **updatemcp** script, it should prompt you to download 3 files. | |
25 | +- Type **yes** to accept the download. | |
26 | +- Run **decompile** as normal. | |
24 | 27 | \ No newline at end of file | ... | ... |
java/client/com/mumfrey/liteloader/client/gui/startup/LoadingBar.java
... | ... | @@ -319,7 +319,7 @@ public class LoadingBar extends LoadingProgress |
319 | 319 | // tessellator.draw(); |
320 | 320 | |
321 | 321 | worldRenderer.startDrawingQuads(); |
322 | - worldRenderer.func_178961_b(this.barLuma, this.barLuma, this.barLuma, 128); | |
322 | + worldRenderer.setColorRGBA(this.barLuma, this.barLuma, this.barLuma, 128); // TODO OBF MCPTEST func_178961_b - setColorRGBA | |
323 | 323 | worldRenderer.addVertex(0.0D, scaledHeight, 0.0D); |
324 | 324 | worldRenderer.addVertex(0.0D + scaledWidth, scaledHeight, 0.0D); |
325 | 325 | worldRenderer.addVertex(0.0D + scaledWidth, scaledHeight - barHeight, 0.0D); |
... | ... | @@ -329,10 +329,10 @@ public class LoadingBar extends LoadingProgress |
329 | 329 | barHeight -= 1; |
330 | 330 | |
331 | 331 | worldRenderer.startDrawingQuads(); |
332 | - worldRenderer.func_178961_b(this.r2, this.g2, this.b2, 255); | |
332 | + worldRenderer.setColorRGBA(this.r2, this.g2, this.b2, 255); // TODO OBF MCPTEST func_178961_b - setColorRGBA | |
333 | 333 | worldRenderer.addVertex(1.0D + barWidth * progress, scaledHeight - 1, 1.0D); |
334 | 334 | worldRenderer.addVertex(1.0D + barWidth * progress, scaledHeight - barHeight, 1.0D); |
335 | - worldRenderer.func_178961_b(0, 0, 0, 255); | |
335 | + worldRenderer.setColorRGBA(0, 0, 0, 255); // TODO OBF MCPTEST func_178961_b - setColorRGBA | |
336 | 336 | worldRenderer.addVertex(1.0D, scaledHeight - barHeight, 1.0D); |
337 | 337 | worldRenderer.addVertex(1.0D, scaledHeight - 1, 1.0D); |
338 | 338 | tessellator.draw(); | ... | ... |