You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Make the script generate the IntelliJ runs and print the duration afterwards.
* Also update the README
* Fix typo
* Cleanup
Co-authored-by: Constructor <[email protected]>
Copy file name to clipboardExpand all lines: README.md
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -56,22 +56,23 @@ How do I...
56
56
<summary>... export KAMI blue config to Lambda?</summary>
57
57
58
58
> Rename `.minecraft/kamiblue` to `.minecraft/lambda`
59
+
> Note that this might cause stability issues.
59
60
60
61
</details>
61
62
62
63
<details>
63
64
<summary>... fix most crashes on startup?</summary>
64
65
65
66
> Possibly you have multiple mods loaded. Forge loads mods in alphabetical order, so you can change the name of the Mod jar to make it load earlier or later. Add for example an exclamation mark to lambda jar to make it load first.
66
-
> If you got `Error: java.lang.IllegalAccessError: tried to access field net.minecraft.util.math.Vec3i.field_177962_a from class baritone.k` remove the noverify tag from your arguments.
67
+
> If you got `Error: java.lang.IllegalAccessError: tried to access field net.minecraft.util.math.Vec3i.field_177962_a from class baritone.k` remove the `-noverify` tag from your arguments.
67
68
68
69
</details>
69
70
70
71
<details>
71
72
<summary>... fix problems with Gradle?</summary>
72
73
73
74
> Make sure you have a Java 8 JDK installed and in your PATH.
74
-
We recommend using the [Temurin](https://adoptium.net/?variant=openjdk8&jvmVariant=hotspot/)variant of OpenJDK
75
+
We recommend using the [Temurin](https://adoptium.net/?variant=openjdk8&jvmVariant=hotspot/)distribution of OpenJDK
75
76
76
77
</details>
77
78
@@ -112,7 +113,7 @@ In this guide we will use [IntelliJ IDEA](https://www.jetbrains.com/idea/) as ID
112
113
### Gradle build
113
114
114
115
Test if the environment is set up correctly by building the client and run it inside IDE using the Gradle tab on the right side of the IDE.
115
-
1. Go to `lambda > Tasks > build > runClient` in the Gradle tab and run the client or create a native run using `lambda > Tasks > fg_runs > genIntelliJRuns`.
116
+
1. Go to `lambda > Tasks > build > runClient` in the Gradle tab and run the client.
116
117
2. To build the client as a jar run `lambda > Tasks > build > build`. Gradle will create a new directory called `build`. The final built jar will be in `build/libs`
0 commit comments