Skip to content

Commit

Permalink
Fix focus script to always include "fabric-client-gametest-api-v1" (#…
Browse files Browse the repository at this point in the history
…4363)

* Fix focus script to always include "fabric-client-gametest-api-v1"

* Fix comment
  • Loading branch information
modmuss50 authored Jan 14, 2025
1 parent 5f21acd commit 6aa3fa3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gradle/Focus.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@ public static void main(String[] args) throws IOException {
readDependencies(arg, dependencies);
}

// All modules depend on fabric-gametest-api-v1 and fabric-registry-sync-v0
// All modules depend on the following modules:
readDependencies("fabric-gametest-api-v1", dependencies);
readDependencies("fabric-client-gametest-api-v1", dependencies);
readDependencies("fabric-registry-sync-v0", dependencies);

System.out.println("Focusing on:\n" + String.join("\n", dependencies));
Expand Down

0 comments on commit 6aa3fa3

Please sign in to comment.